Skip to main content
POST
/
api
/
public
/
v1
/
tax-exemptions
Bulk create tax exemptions
curl --request POST \
  --url http://app.localhost:3000/api/public/v1/tax-exemptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "storeId": "<string>",
  "emails": [
    "jsmith@example.com"
  ]
}
'
{
  "message": "<string>",
  "code": "<string>",
  "issues": [
    {
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
storeId
string
required
emails
string<email>[]
required
Minimum array length: 1

Response

Successful response