POST
/
registrations
/
{id}
curl --request POST \
  --url https://base_url/api/v1/registrations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "registered_at": "2023-12-25",
  "country_specific_details": {
    "legal_name": "Example Inc.",
    "state": "CA",
    "state_specific_details": {
      "payment_interval": "<string>",
      "sales_tax_id": "<string>",
      "username": "<string>",
      "password": "<string>",
      "pin": "<string>",
      "web_file_number": "<string>",
      "tax_types": [
        "RSST"
      ]
    }
  }
}'
{
  "message": "Successfully updated registration."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The unique identifier of the registration to update.

Body

application/json

Response

200
application/json

Sales tax registration response

The response is of type object.