Get person
GET/api/v2/People/:key
Get person
Request
Path Parameters
key stringrequired
Guid or ExternalKey
Responses
- 200
- 400
- 404
Success
- application/json
- Schema
- Example (from schema)
Schema
Guid guid
Revision int64
PersonCreated guidnullable
PersonChanged guidnullable
TimestampCreated date-timenullable
Example:
2024-10-07T12:48:00Z
TimestampChanged date-timenullable
Example:
2024-10-07T12:48:00Z
FirstName stringnullable
LastName stringnullablerequired
NameSuffix stringnullable
Code stringnullable
Email stringnullablerequired
PhoneNumber stringnullable
Note stringnullable
Inactive boolean
ClosedPeriodTo datenullable
ExternalKey stringnullable
Branch guidnullable
{
"Guid": "string",
"Revision": 0,
"PersonCreated": "string",
"PersonChanged": "string",
"TimestampCreated": "2024-10-07T12:48:00Z",
"TimestampChanged": "2024-10-07T12:48:00Z",
"FirstName": "string",
"LastName": "string",
"NameSuffix": "string",
"Code": "string",
"Email": "string",
"PhoneNumber": "string",
"Note": "string",
"Inactive": true,
"ClosedPeriodTo": "2024-07-29",
"ExternalKey": "string",
"Branch": "string"
}
Error
- application/json
- Schema
- Example (from schema)
Schema
Error
object
required
Code stringnullable
Message stringnullable
{
"Error": {
"Code": "string",
"Message": "string"
}
}
Not Found
Loading...