GET
/
organizations
/
{organization_id}
/
tax-identifiers
Get Organization Tax Identifiers
curl --request GET \
  --url https://api.example.com/organizations/{organization_id}/tax-identifiers \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "validFrom": "2023-12-25",
  "validTo": "2023-12-25",
  "taxData": {
    "country": "<string>",
    "businessType": "Sole Trader",
    "payeReferenceNumber": "<string>",
    "accountsOfficeReference": "<string>",
    "validFrom": "2023-12-25",
    "validTo": "2023-12-25"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organization_id
required

Response

TaxIdentifiersResponse · object | null

Successful Response

id
integer
required
validFrom
string<date> | null
validTo
string<date> | null
taxData
GBTaxIdentifier · object