Create Registrations
Learn about creating registrations.
Create registrations
Endpoint | Method | Key value | Required fields |
---|---|---|---|
/config/v2/registrations | POST | registeredJurisdiction | registeredJurisdiction , owningPartyId , startDate |
This request creates one or more registrations.
Sample response - Create registrations
[
{
"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"
}
]
Sample response - Create registration
[
{
"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"
}
]
Updated 2 months ago