EntityDefinitions
Authorizations
Query parameters
limitinteger · min: 1 · max: 1000OptionalDefault:
Maximum number of items to return (1-1000)
10cursorstringOptional
Cursor for pagination. Use the value from the 'nextCursor' field of the previous response.
Responses
200
Successful response
application/json
400
Bad request
application/json
401
Unauthorized
application/json
500
Internal server error
application/json
get/entityDefinitions
GET /entityDefinitions HTTP/1.1
Accept: */*
{
"data": [
{
"code": "text",
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": {
"en_us": "English text",
"nl_nl": "Nederlandse tekst"
}
}
],
"pagination": {
"hasMore": true,
"limit": 1,
"nextCursor": "text",
"total": 1
}
}Authorizations
Path parameters
idstringRequired
EntityDefinition ID
Responses
200
Successful response
application/json
codestringRequired
idstring · uuidRequired
401
Unauthorized
application/json
404
Not found
application/json
500
Internal server error
application/json
get/entityDefinitions/{id}
GET /entityDefinitions/{id} HTTP/1.1
Accept: */*
{
"code": "text",
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": {
"en_us": "English text",
"nl_nl": "Nederlandse tekst"
}
}Last updated
Was this helpful?