POST
/
reseller
/
customers
curl --request POST \
  --url https://api.tic.io/reseller/customers \
  --header 'Content-Type: application/json-patch+json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "domainOrCompanyName": "<string>",
  "emailAddress": "<string>",
  "externalReference": "<string>"
}'
{
  "teamId": 123,
  "teamGuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "teamName": "<string>",
  "teamDescription": "<string>",
  "teamEmail": "<string>",
  "apiKey": "<string>"
}

Allows you to create a customer if you represent a reseller. Use isTest=true to avoid creating actual accounts during testing.

Authorizations

x-api-key
string
header
required

Query Parameters

isTest
boolean
default:false

Set flag to true if you don't want to create the actual customer

Body

domainOrCompanyName
string | null
emailAddress
string | null
externalReference
string | null

Response

200 - application/json
OK
teamId
integer
teamGuid
string
teamName
string | null
teamDescription
string | null
teamEmail
string | null
apiKey
string | null