Get details of current dealer.
GET /api/dealer HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "enabled": true, "level": "DISTRIBUTOR", "name": "text", "email": "example@example.com", "display_name": "text", "website": "text", "phone": "text", "address": "text", "description": "text", "max_tenants": 100, "max_extensions": 50000 }
Modify the settings of the current dealer.
The email address of user.
The email address.
example@example.com
The display name of user.
The website of user.
The mobile phone number of user.
The address.
The description of dealer.
POST /api/dealer HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 123 { "email": "example@example.com", "display_name": "text", "website": "text", "phone": "text", "address": "text", "description": "text" }
No content