POST
/
billing
/
tax
curl --request POST \
  --url https://api.altostrat.io/billing/tax \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "ad_nrt",
  "value": "<string>"
}'
{
  "id": "<string>",
  "value": "<string>",
  "type": "<string>",
  "country": "<string>",
  "verification": {
    "status": "pending",
    "verified_address": "<string>",
    "verified_name": "<string>"
  },
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Standard OAuth2 flow for user authentication. Use Authorization Code Grant or Implicit Grant. JWT Bearer tokens obtained are used for subsequent requests.

Body

application/json

Response

201
application/json

Tax ID added successfully.

The response is of type object.