Delete

Deletes specific records from an entity based on their IDs.

Syntax

Copy
POST <<i>host_address</i>>/api/openApi/Delete

Content-Type: application/json
            

    "ApiInfo": {
        "token":<<i>access_token</i>>
    },
    "Request": { 
        "entityName":<<i>entity_name</i>>, 
        "idList":<<i>item_IDs</i>> 
    }
}
 
Parameter Description
host_address URL of the FintechOS platform server.
access_token Access token used to connect to the API endpoint. For details, see GetToken.
entity_name The parent entity, such as entity, attribute, relationship, systemuser, systemusertype, customizationset, businessunit, or portal.
item_IDs List of unique internal identifiers of the records you wish to delete.

Response

Copy
{
    "Id": null,
    "Message": null,
    "IsSuccess": true,
    "ClientScript": null,
    "ErrorCode": 0,
    "Serialized": null,
    "UIResult": null
}
 
Key Description
IsSuccess Indicates if the records were deleted successfully.

Examples