List Registrations
Learn about listing all registrations.
List all registrations
Endpoint | Method | Key value | Required fields |
---|---|---|---|
/config/v2/registrations | GET | $filter | N/A |
Returns a list of registrations ordered by owningPartyId
. You can filter by owningPartyId
and registrationType
using eq
operator.
For example:
owningPartyId eq '37f038e2-22ec-4e5b-93f4-f065bea65542', registrationType eq 'IMPORT_ONE_STOP_SHOP', owningPartyId eq '37f038e2-22ec-4e5b-93f4-f065bea65542' and registrationType eq 'IMPORT_ONE_STOP_SHOP'.
Sample response - List registrations
{
"registrations": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"registeredJurisdiction": {
"parentCountry": "string",
"parentMainDivision": "string",
"name": "string",
"vertexJurisdictionId": 0,
"type": "STATE",
"level": "MAIN_DIVISION",
"startDate": "2021-01-01",
"endDate": "2021-12-01"
},
"owningPartyId": "123e4567-e89b-12d3-a456-426614174000",
"owningPartyType": "TAXPAYER",
"startDate": "2021-01-01",
"endDate": "2021-12-01",
"registrationType": "VAT_REGISTRATION",
"registrationNumber": "string",
"physicalPresence": false,
"filingCurrencyIsoCode": "str"
}
],
"count": 0,
"truncated": true
}
Updated 2 months ago