Skip to main content

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-TypeValue
Accept-Language

Headers

Content-TypeValue
Accepttext/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

AUTHORIZATION

Bearer

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!