Skip to main content
POST
https://api.telzino.com
/
v1
/
resellers
/
{resellerId}
/
organizations
curl -X POST "https://api.telzino.com/v1/resellers/reseller-123/organizations" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "orgName": "Acme Solar",
    "external_id": "external-org-12345"
  }'
{
  "id": "org-abc12345-e89b-12d3-a456-426614174000",
  "reseller_id": "reseller-123",
  "name": "Acme Solar",
  "external_id": "external-org-12345",
  "created_at": "2024-01-15T10:30:00Z"
}

Path Parameters

resellerId
string
required
The reseller ID to create the organization under

Request Body

orgName
string
required
Name of the organization
external_id
string
External identifier for integration with your systems
curl -X POST "https://api.telzino.com/v1/resellers/reseller-123/organizations" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "orgName": "Acme Solar",
    "external_id": "external-org-12345"
  }'
{
  "id": "org-abc12345-e89b-12d3-a456-426614174000",
  "reseller_id": "reseller-123",
  "name": "Acme Solar",
  "external_id": "external-org-12345",
  "created_at": "2024-01-15T10:30:00Z"
}