Skip to main content
POST
/
v1
/
tax_registrations
Create
curl --request POST \
  --url https://{defaultHost}/v1/tax_registrations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tax_registration": {
    "tax_zone": "1dad19f2-6f2c-4005-adfc-2f9e55169504",
    "manual_rate": 10
  }
}
'
{
  "id": "87b375c6-8cb3-4f5f-bfa9-1753fbf9c125",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 10,
  "tax_identifier": null,
  "tax_zone": "1dad19f2-6f2c-4005-adfc-2f9e55169504",
  "created_at": 1778010939,
  "updated_at": 1778010939
}

Documentation Index

Fetch the complete documentation index at: https://developer.surecart.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json
tax_registration
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

label
string | null

The tax label for this tax registration. If blank, the default tax label from the tax zone will be used.

manual_rate
number | null

The manual tax rate to use for this tax registration.

tax_identifier
object

Expanded – The associated tax identifier object.

tax_zone
string

Expandable – The associated tax zone ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.