Get person by ID
GET /api/v1/Person/:Id/details
Description
This endpoint is used to retrieve person details by ID.
Tags:
Person
URL:
/api/v{version}/Person/{Id}/details
ApiKey:
No API key required
Content-Type:
No request body
Query Parameters:
None
Path Parameters:
- Id: string (UUID), required
Response:
Success, returns person details.
Error Codes:
None
Example:
bashCopy codeGET /api/v1/Person/{Id}/details
Accept-Language: en
/api/v1/Person/:Id/details
Headers
| Content-Type | Value |
|---|---|
| Accept-Language |
Headers
| Content-Type | Value |
|---|---|
| Accept | text/plain |
Response: 200
{
"succeeded": `<boolean>`,
"message": `<string>`,
"errors": [
`<string>`,
`<string>`
],
"data": `<string>`
}
Response: 400
{
"succeeded": `<boolean>`,
"message": `<string>`,
"errors": [
`<string>`,
`<string>`
],
"data": `<string>`
}
Response: 404
{
"succeeded": `<boolean>`,
"message": `<string>`,
"errors": [
`<string>`,
`<string>`
],
"data": `<string>`
}
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/Person/:Id/details \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!