Get Client Details
Retrieves detailed information about a specific client by their ID. Requires a JWT bearer token.
Path Parameters
- Type: stringclient
Id requiredID of the client to retrieve.
Responses
- application/json
- 401
Unauthorized
- 403
Forbidden
- 404
Not Found
Request Example for get/v1/subscriber/clients/{clientId}
curl 'https://api.broker.v1.demo.affordx.nz/v1/subscriber/clients/{clientId}' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"id": "string",
"firstName": "string",
"lastName": "string",
"email": "hello@example.com"
}