Get Person account details by ID
GET /api/v1/PersonAccounts/:id/get
Description
This endpoint is used to retrieve the details of a person account by its unique ID.
Tags:
PersonAccounts
URL:
/api/v{version}/PersonAccounts/{id}/get
ApiKey:
No API key required
Content-Type:
None
Query Parameters:
None
Path Parameters:
- id (string, required): The unique ID of the person account to retrieve.
Request Body:
None
Response:
Success, returns a person account response.
Error Codes:
None
Example:
/api/v1s/PersonAccounts/:id/get
Headers
| Content-Type | Value |
|---|---|
| Accept-Language |
Headers
| Content-Type | Value |
|---|---|
| Accept | text/plain |
Response: 200
{
"succeeded": `<boolean>`,
"message": `<string>`,
"errors": [
`<string>`,
`<string>`
],
"data": {
"id": `<uuid>`,
"personId": `<uuid>`,
"accountId": `<string>`,
"accountBIC": `<string>`,
"accountType": `<string>`,
"accountName": `<string>`,
"currency": `<string>`,
"availableBalance": `<double>`,
"accountLimit": `<double>`,
"statusDescription": `<string>`,
"created": `<dateTime>`,
"nubanOrIban": `<string>`,
"purpose": `<string>`,
"comment": `<string>`,
"status": `<string>`,
"productId": `<string>`,
"clientId": `<string>`
}
}
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/PersonAccounts/:id/get \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!