GetByID

Returns detailed information about a specific record based on its ID and parent entity.

Syntax

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

Content-Type: application/json
            

    "ApiInfo": {
        "Token":<<i>access_token</i>>
    },
    "Request": { 
        "EntityName":<<i>entity_name</i>>, 
        "EntityId":<<i>item_ID</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_id Unique internal identifier or the record.

Response

Copy
{
    "NumberOfResults": 0,
    "TotalNumber": 0,
    "RequestedSkip": 0,
    "RequestedTake": 0,
    "Records": [
        {
            "name": "Front Office",
            "displayName": null,
            "systemusertypeid": "adcca965-eb7c-4fbd-a946-90a11dcb46f1",
            "primaryattributedisplayname": "Front Office"
        }
    ],
    "Message": null,
    "IsSuccess": true,
    "ClientScript": null,
    "Serialized": null,
    "ErrorCode": 0,
    "UIResult": null
}
 
Key Description
Records Displays the record's attribute values.

Examples