POST/v1/subscription/contact-inquiry

Create subscription contact inquiry

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

namestringnullable
emailstringnullable
companystringnullable
productCodestringnullable
productNamestringnullable
messagestringnullable
tenantIdstringnullable

Responses

No response body.

curl --request POST \
  --url 'https://api.4comply.io/v1/subscription/contact-inquiry' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Example name",
  "email": "user@example.com",
  "company": "string",
  "productCode": "example-code",
  "productName": "Example name",
  "message": "Example text",
  "tenantId": "your-tenant-id"
}'