Skip to main content
POST
/
compliance
/
jurisdictions
Create Jurisdiction
curl --request POST \
  --url https://api.{your-broker}.slate-labs.com/compliance/jurisdictions \
  --header 'Content-Type: application/json' \
  --data '
{
  "country_code": "<string>",
  "country_name": "<string>",
  "tier": 2,
  "reason": "<string>"
}
'
{
  "id": 123,
  "country_code": "<string>",
  "country_name": "<string>",
  "tier": 123,
  "reason": "<string>",
  "is_active": true,
  "created_at": "2023-11-07T05:31:56Z"
}

Body

application/json
country_code
string
required
Required string length: 2
country_name
string
required
Required string length: 1 - 128
tier
integer
required
Required range: 1 <= x <= 3
reason
string | null

Response

Successful Response

id
integer
required
country_code
string
required
country_name
string
required
tier
integer
required
reason
string | null
required
is_active
boolean
required
created_at
string<date-time>
required