Get details of a specific account
This Tango endpoint retrieves complete, up‑to‑date details about a specific account on your Tango platform. This includes operational and administrative information such as the account number, account name, display name, balance, currency, creation timestamp, contact email, and funding notification settings.
Endpoint
Use the following endpoint to get details for a specific account on your platform:
| Function | Purpose |
|---|---|
GET {URI}/accounts/{accountIdentifier} | Get details for a specific account on this Platform. |
Parameters
The following path parameter tells the Tango API exactly which single account you want to retrieve. It acts like a unique address for an account on your platform:
Path params | Data type | Description |
|---|---|---|
accountIdentifier | string | The accountIdentifier for the Account you are seeking details. |
Examples
The following payload example is returned by GET {URI}/accounts/{accountIdentifier} endpoint:
{
"currentBalance": 0,
"contactEmail": "string", (255 chars)
"fundingNotification": [
{
"emailAddress": "string"
}
],
"accountIdentifier": "string", (5-100 chars)
"accountNumber": "string", (5-100 chars)
"displayName": "string", (100 chars)
"createdAt": "2024-03-13T23:25:59.600Z",
"status": "string",
"currencyCode": "string" (3 chars)
}Here's an example payload for when you receive an error:
{
"timestamp": "2025-02-21T23:23:13.930Z",
"requestId": "string",
"path": "string",
"httpCode": 0,
"httpPhrase": "string",
"i18nKey": "string",
"message": "The error message will show here for error codes ",
"errors": [
{}
]
}Response
The possible response codes for this endpoint are as follows. For details, see i18nkey codes and their error messages:
| Response code | Meaning |
|---|---|
| 200 | The request was successful. |
| 400 | The server could not understand the request due to invalid syntax. |
| 401 | Authentication is required and has either not been provided or failed. |
| 403 | The server understood the request but refuses to authorize it. |
| 404 | The server could not find the requested resource. In other words, the URL you’re trying to access doesn’t point to anything that exists on the server. |
Updated 4 days ago
