Get customer details
GET/customers/:id
Retrieves detailed information about a specific customer. This endpoint:
- Returns complete customer profile information
- Includes all associated data and relationships
- Provides current status and configuration
Request
Path Parameters
id stringrequired
Responses
- 200
- 400
- 403
- 404
The customer details were successfully retrieved.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
traceId string
message string
data
object
id stringrequired
name stringrequired
type stringrequired
portfolios
object[]
id stringrequired
The ID of the portfolio
default booleanrequired
Whether this portfolio is the default portfolio
wallets string[]required
The IDs of the wallets in the portfolio
{
"traceId": "string",
"message": "string",
"data": {
"id": "00000000-0000-0000-0000-000000000000",
"name": "john doe",
"type": "LEGAL",
"portfolios": [
{
"id": "00000000-0000-0000-0000-000000000000",
"default": true,
"wallets": [
"string"
]
}
]
}
}
Invalid request payload. This can happen if required fields are missing or have invalid formats.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
The API key is invalid or the client does not have sufficient permissions.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
One of the specified resources was not found. Does not apply for empty result set.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
Loading...