Retrieval of an account owners

GET /api/v1/accounts/{account_resource_id}/owners

Headers

  • X-Request-ID string Required

    Correlation header to be set in a request and retrieved in the relevant response

Path parameters

Responses

  • Owners

    Hide response attributes Show response attributes object
GET /api/v1/accounts/{account_resource_id}/owners
curl \
 -X GET https://iban.nash.io/api/v1/accounts/212f9431-f1f0-4808-b3bc-3303d8db91d3/owners \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "X-Request-ID: string"
Response examples (200)
{
  "_links": {
    "balances": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/balances"
    },
    "overdrafts": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/overdrafts"
    },
    "self": {
      "href": "/v1/accounts"
    },
    "transactions": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/transactions"
    }
  },
  "owners": [
    {
      "first_name": "Balthazar",
      "full_name": "M. Balthazar Dupond",
      "last_name": "Dupond",
      "name_prefix": "MIST"
    }
  ]
}
Response examples (200)
{
  "_links": {
    "self": {
      "href": "/v1/accounts"
    },
    "balances": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/balances"
    },
    "overdrafts": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/overdrafts"
    },
    "transactions": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/transactions"
    }
  },
  "owners": [
    {
      "full_name": "M. Balthazar Dupond",
      "last_name": "Dupond",
      "first_name": "Balthazar",
      "name_prefix": "MIST"
    }
  ]
}