Skip to main content
POST
/
management
/
companies
curl -X POST "https://api.cryptomate.me/management/companies" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Corporation",
    "email": "contact@acme.com",
    "webhook_url": "https://api.acme.com/webhooks"
  }'
{
  "name": "Acme Corporation",
  "email": "contact@acme.com",
  "webhook_url": "https://api.acme.com/webhooks"
}
Creates a new company in the system with initial configuration. This is a provisioning endpoint typically used during onboarding.

Body

name
string
required
Company name.
email
string
Company contact email address.
webhook_url
string
Webhook URL for receiving notifications.

Response

name
string
Company name.
email
string
Company contact email address.
webhook_url
string
Webhook URL for receiving notifications.
curl -X POST "https://api.cryptomate.me/management/companies" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Corporation",
    "email": "contact@acme.com",
    "webhook_url": "https://api.acme.com/webhooks"
  }'
{
  "name": "Acme Corporation",
  "email": "contact@acme.com",
  "webhook_url": "https://api.acme.com/webhooks"
}