POST/v1/geo/regulationmaps

Create geo regulationmaps

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

idstringnullable
tenant_idstringnullable
created_atstring (date-time)
updated_atstring (date-time)
input_statestringnullable
input_countrystringnullable
standard_statestringnullable
standard_countrystringnullable
nicknamestringrequiredmin length 1
regulation_idstringrequiredmin length 1
regulation_namestringnullable

Responses

object ClientGeoRegulationMap — same shape as the request body.

curl --request POST \
  --url 'https://api.4comply.io/v1/geo/regulationmaps' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "00000000-0000-0000-0000-000000000000",
  "tenant_id": "your-tenant-id",
  "created_at": "2026-09-07T12:00:00Z",
  "updated_at": "2026-09-07T12:00:00Z",
  "input_state": "CA",
  "input_country": "US",
  "standard_state": "CA",
  "standard_country": "US",
  "nickname": "Example name",
  "regulation_id": "00000000-0000-0000-0000-000000000000",
  "regulation_name": "Example name"
}'