Administrations
Manage PBX System.
Get network configurations.
OK
The web domain for PortSIP PBX
The private IPv4 of system.
The public IPv4 of system.
Indicates if IPv6 would be enabled.
trueThe private IPv6 of system.
The public IPv6 of system.
The primary DNS server.
The secondary DNS server.
Error
GET /api/network HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"web_domain": null,
"private_ipv4": null,
"public_ipv4": null,
"enable_ipv6": null,
"private_ipv6": null,
"public_ipv6": null,
"primary_dns_server": null,
"secondary_dns_server": null
}Update network configurations for PortSIP PBX.
The web domain for PortSIP PBX
The private IPv4 of system.
The public IPv4 of system.
Indicates if IPv6 would be enabled.
trueThe private IPv6 of system.
The public IPv6 of system.
The primary DNS server.
The secondary DNS server.
OK
No content
Error
POST /api/network HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 170
{
"web_domain": null,
"private_ipv4": null,
"public_ipv4": null,
"enable_ipv6": null,
"private_ipv6": null,
"public_ipv6": null,
"primary_dns_server": null,
"secondary_dns_server": null
}No content
List a collection of users.
Use the filter query parameter to retrieve just a subset of a collection.
Use the search query parameter to restrict the results of a request to match a search criterion.
Use the orderby query parameter to specify the sort order of the items returned from server.
The default order is ascending order.
Use the skip query parameter to set the number of items to skip at the start of a collection.
0Use the top query parameter to specify the page size of the result set.
100OK
Total number of resource.
100Error
GET /api/admin/users HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"items": [
{
"id": null,
"name": null,
"enabled": null,
"protected": null,
"email": null,
"display_name": null,
"role_id": null,
"role_name": null,
"mobile_phone": null,
"work_phone": null,
"home_phone": null,
"address": null,
"department": null,
"website": null,
"created_at": null,
"login_at": null,
"logout_at": null,
"avatar_file_name": null,
"avatar_file_size": null,
"avatar_file_url": null
}
]
}Create a user.
The user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
The password of user.
The email address.
example@example.comThe display name of user.
Whether user is enabled.
trueRoles include built-in roles and custom roles.
Built-in roles roles cannot be modified.
Also, the names of built-in roles are reserved words,
custom roles are not allowed to use these names to avoid unnecessary confusion.
Built-in roles include:
SystemAdmin: the system administrator has almost all permissions.OperationsAdmin: the operations administrator.SiteAdmin: the site administrator.Dealer: the sales manager has all sold tenant resource permissions.Admin: the admin has all tenant-wide resource permissions.StandardUser: the user all user-wide resource permissions.StandardInternationalUser: the user all user-wide resource permissions with international call permissions.QueueManager: The call queue manager.
UserThe mobile phone number of user.
The office phone number of user.
The home phone number of user.
The address.
The department of user.
The website of user.
Created
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwError
POST /api/admin/users HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 191
{
"name": null,
"password": null,
"email": null,
"display_name": null,
"enabled": null,
"role": null,
"mobile_phone": null,
"work_phone": null,
"home_phone": null,
"address": null,
"department": null,
"website": ""
}{
"id": "xxxxxxxx"
}Retrieves information of a user.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
The email address.
example@example.comThe display name of user.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwRoles include built-in roles and custom roles.
Built-in roles roles cannot be modified.
Also, the names of built-in roles are reserved words,
custom roles are not allowed to use these names to avoid unnecessary confusion.
Built-in roles include:
SystemAdmin: the system administrator has almost all permissions.OperationsAdmin: the operations administrator.SiteAdmin: the site administrator.Dealer: the sales manager has all sold tenant resource permissions.Admin: the admin has all tenant-wide resource permissions.StandardUser: the user all user-wide resource permissions.StandardInternationalUser: the user all user-wide resource permissions with international call permissions.QueueManager: The call queue manager.
UserWhether user is enabled.
trueWhether user is protected.
falseThe mobile phone number of user.
The office phone number of user.
The home phone number of user.
The address.
The department of user.
The website of user.
The RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe name of the file.
The file size in bytes.
0The relative path to file url for file downloading.
/api/blobs/WexWdABcd5D4PDgzTKV3gAAAEu00WcKError
GET /api/admin/users/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": null,
"name": null,
"email": null,
"display_name": null,
"role_id": null,
"role_name": null,
"enabled": null,
"protected": null,
"mobile_phone": null,
"work_phone": null,
"home_phone": null,
"address": null,
"department": null,
"website": null,
"created_at": null,
"login_at": null,
"logout_at": null,
"avatar_file_name": null,
"avatar_file_size": null,
"avatar_file_url": null
}Change configurations of user.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe email address.
example@example.comThe display name of user.
Whether user is enabled.
trueThe mobile phone number of user.
The office phone number of user.
The home phone number of user.
The address.
The department of user.
The website of user.
OK
No content
Error
POST /api/admin/users/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 153
{
"email": null,
"display_name": null,
"enabled": null,
"mobile_phone": null,
"work_phone": null,
"home_phone": null,
"address": null,
"department": null,
"website": null
}No content
Change admin user username.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
OK
No content
Error
POST /api/admin/users/{id}/username HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"name": null
}No content
Change admin user password.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe password of system admin.
OK
No content
Error
POST /api/admin/users/{id}/password HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 27
{
"password": "xxxxxxxxxxxx"
}No content
Change admin user role.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwRoles include built-in roles and custom roles.
Built-in roles roles cannot be modified.
Also, the names of built-in roles are reserved words,
custom roles are not allowed to use these names to avoid unnecessary confusion.
Built-in roles include:
SystemAdmin: the system administrator has almost all permissions.OperationsAdmin: the operations administrator.SiteAdmin: the site administrator.Dealer: the sales manager has all sold tenant resource permissions.Admin: the admin has all tenant-wide resource permissions.StandardUser: the user all user-wide resource permissions.StandardInternationalUser: the user all user-wide resource permissions with international call permissions.QueueManager: The call queue manager.
UserOK
No content
Error
POST /api/admin/users/{id}/role HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"role": null
}No content
Delete a user.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwNo Content
No content
Error
POST /api/admin/users/{id}/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Retrieves information about the currently logged-in administrator user.
OK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
The email address.
example@example.comThe display name of user.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwRoles include built-in roles and custom roles.
Built-in roles roles cannot be modified.
Also, the names of built-in roles are reserved words,
custom roles are not allowed to use these names to avoid unnecessary confusion.
Built-in roles include:
SystemAdmin: the system administrator has almost all permissions.OperationsAdmin: the operations administrator.SiteAdmin: the site administrator.Dealer: the sales manager has all sold tenant resource permissions.Admin: the admin has all tenant-wide resource permissions.StandardUser: the user all user-wide resource permissions.StandardInternationalUser: the user all user-wide resource permissions with international call permissions.QueueManager: The call queue manager.
UserWhether user is enabled.
trueWhether user is protected.
falseThe mobile phone number of user.
The office phone number of user.
The home phone number of user.
The address.
The department of user.
The website of user.
The RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe name of the file.
The file size in bytes.
0The relative path to file url for file downloading.
/api/blobs/WexWdABcd5D4PDgzTKV3gAAAEu00WcKError
GET /api/admin/user HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": null,
"name": null,
"email": null,
"display_name": null,
"role_id": null,
"role_name": null,
"enabled": null,
"protected": null,
"mobile_phone": null,
"work_phone": null,
"home_phone": null,
"address": null,
"department": null,
"website": null,
"created_at": null,
"login_at": null,
"logout_at": null,
"avatar_file_name": null,
"avatar_file_size": null,
"avatar_file_url": null
}Change configurations of currently logged-in administrator user.
The email address.
example@example.comThe display name of user.
The mobile phone number of user.
The office phone number of user.
The home phone number of user.
The address.
The department of user.
The website of user.
OK
No content
Error
POST /api/admin/user HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 138
{
"email": null,
"display_name": null,
"mobile_phone": null,
"work_phone": null,
"home_phone": null,
"address": null,
"department": null,
"website": null
}No content
Change current admin user username.
The user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
OK
No content
Error
POST /api/admin/user/username HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"name": null
}No content
Change current admin user password.
The password of system admin.
The password of system admin.
OK
No content
Error
POST /api/admin/user/password HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"old_password": null,
"new_password": null
}No content
Get current status of system.
OK
The version information of PortSIP PBX.
The news information of PortSIP PBX.
The license key of PortSIP PBX.
The license type of product.
The RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe number of authorized concurrent calls purchased by the user.
The maximum number of authorized users purchased by the system admin.
The number of current users of the system.
The number of current online users of the system.
The number of current tenants of the system.
The number of current dealers of the system.
The current number of calls.
The current number of trunks.
The current number of conference servers.
The current number of media servers.
The current number of call queue servers.
The current number of ivr servers.
Error
GET /api/admin/status HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"version": null,
"news": null,
"license_key": null,
"license_type": null,
"maintenance_expires_at": null,
"max_concurrent_calls": null,
"licensed_users": null,
"current_users": null,
"online_users": null,
"current_tenants": null,
"current_dealers": null,
"current_calls": null,
"current_trunks": null,
"current_conference_servers": null,
"current_media_servers": null,
"current_call_queue_servers": null,
"current_ivr_servers": null
}Retrieve settings for PortSIP PBX.
OK
User agent.
PortSIP UCThe semicolon separated list of blocked user agents.
Enable Shared Address Space Address Range or not (RFC 6598).
trueIndicates if DIGEST authentication would be enabled.
trueIndicates if PortSIP PBX requires authentication against all subsequent requests originated from one calling.
falseIndicates if auth-int DIGEST authentication mode would be enabled.
falseAllow external calls recording.
trueWhen a client sends a bad nonce in their credentials, return 403 message if this parameter is true, or send a new challenge if this parameter is false.
falseInterval for statistics logs, in seconds.
600Close the session if no RTP packets received within specified duration, in seconds.
600Indicates if session timer (RFC 4028) would be enabled. This also requires client support.
trueDuration recorded by Session timer. Precondition: "enable_session_timer" MUST be set to true.
3600Indicates if "to" tag is allowed in REGISTER message.
falseIndicates if congestion management would be enabled.
truePrecondition: "enable_congestion_management" parameter MUST be set to true. The recommended is WAIT_TIME based on the expected wait time for each FIFO.
WAIT_TIME:TIME_DEPTH:SIZE:
Precondition: "enable_congestion_management" parameter MUST be set to true. Congestion management tolerance for the given metric. This parameter determines when the Rejection Behavior changes.
600Indicates if the extension would be automatically created when a non-existent extension try to register. If it is set to true, when a non-included extension tries to send registry message to PBX, the PBX will create the extension with default password "portsip" automatically.
falseEnable prack or not.
falseWhether to enable tenant-level trunk.
trueEnable Diversion support or not (RFC 5806).
falseEnable History-Info support (RFC 7044).
falseEnable Outbound Support or not (RFC 5626).
trueThe flow timer interval in seconds.
0The register expiration time in seconds.
300Enable call-info header for auto answer or not.
falseAlert-info header to be added in INVITE message when PBX is forwarding the page/intercom. Values includes:
INTERCOM: info=intercom.ALERT_AUTO_ANSWER: Alert-Info:;info=alert-autoanswer;delay=0.AUTO_ANSWER: info=Auto Answer.
Enable call-info header for auto answer. The value is "sip:portsip.com;answer-after=0".
trueEnable Require Answer Mode (RFC 5373) for auto answer.
falseEnable WWW authentication or not.
falseUser equal required for authentication name.
trueTracer server host.
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80Block if failed to login PortSIP PBX Web more than this times.
5The web blocked time in seconds.
3600The number of authentication failures.
50DOS attacks can send REGISTER/INVITE requests but do not reply to Challenge (407). Configure the amount of "fake" requests that PortSIP PBX will accept per IP Address. If this value is exceeded in "Detection Period" interval the source IP address is put in the Blacklist. IP will remain blacklisted till "SIP Blacklist time interval" expires.
1000The sip blocked time in seconds.
3600The detection period in seconds.
10If the amount of packets is exceeded, the PBX will block the source IP for "Level 1 blacklist time interval" seconds.
5000This is the time interval in seconds that an abusive IP Address remains in the blacklist
3600If the amount of packets is exceeded, the PBX will block the source IP for "Level 2 blacklist time interval" seconds.
2000This is the time interval in seconds that an abusive IP Address remains in the blacklist
30Content of this certificate file for STIR/SHAKEN support.
Content of this private certificate file for STIR/SHAKEN support.
Some custom configuration options serialized as json string.
Error
GET /api/admin/settings HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"user_agent": null,
"blocked_user_agents": null,
"enable_shared_address_space_address_range": null,
"enable_digest_auth": null,
"enable_auth_mid_dialog": null,
"enable_digest_auth_int": null,
"enable_external_recording": null,
"enable_reject_bad_nonce": null,
"statistics_log_interval": null,
"dead_session_timeout": null,
"enable_session_timer": null,
"session_timer_duration": null,
"enable_to_tag_in_register": null,
"enable_congestion_management": null,
"congestion_management_metric": null,
"congestion_management_tolerance": null,
"enable_create_non_exist_extension": null,
"enable_prack": null,
"enable_tenant_level_trunk": null,
"enable_diversion_support": null,
"enable_history_info_support": null,
"enable_outbound_support": null,
"flow_timer": null,
"register_expiration_time": null,
"enable_auto_answer_alert_info_header": null,
"auto_answer_alert_info_header": null,
"enable_auto_answer_call_info_header": null,
"enable_require_answer_mode": null,
"enable_www_auth": null,
"user_equal_required_for_auth_name": null,
"trace_server_host": null,
"trace_server_port": null,
"web_failed_auth_amount": null,
"web_blacklist_time_interval": null,
"sip_failed_auth_amount": null,
"sip_failed_challenge_requests_amount": null,
"sip_blacklist_time_interval": null,
"sip_detection_period": null,
"sip_barrier_1_packets": null,
"sip_barrier_1_blocking_time": null,
"sip_barrier_2_packets": null,
"sip_barrier_2_blocking_time": null,
"stir_shaken_cert": null,
"stir_shaken_key": null,
"custom_options": null
}Update settings for PortSIP PBX
User agent.
PortSIP UCThe semicolon separated list of blocked user agents.
Enable Shared Address Space Address Range or not (RFC 6598).
trueIndicates if DIGEST authentication would be enabled.
trueIndicates if PortSIP PBX requires authentication against all subsequent requests originated from one calling.
falseIndicates if auth-int DIGEST authentication mode would be enabled.
falseAllow external calls recording.
trueWhen a client sends a bad nonce in their credentials, return 403 message if this parameter is true, or send a new challenge if this parameter is false.
falseInterval for statistics logs, in seconds.
600Close the session if no RTP packets received within specified duration, in seconds.
600Indicates if session timer (RFC 4028) would be enabled. This also requires client support.
trueDuration recorded by Session timer. Precondition: "enable_session_timer" MUST be set to true.
3600Indicates if "to" tag is allowed in REGISTER message.
falseIndicates if congestion management would be enabled.
truePrecondition: "enable_congestion_management" parameter MUST be set to true. The recommended is WAIT_TIME based on the expected wait time for each FIFO.
WAIT_TIME:TIME_DEPTH:SIZE:
Precondition: "enable_congestion_management" parameter MUST be set to true. Congestion management tolerance for the given metric. This parameter determines when the Rejection Behavior changes.
600Indicates if the extension would be automatically created when a non-existent extension try to register. If it is set to true, when a non-included extension tries to send registry message to PBX, the PBX will create the extension with default password "portsip" automatically.
falseEnable prack or not.
falseWhether to enable tenant-level trunk.
trueEnable Diversion support or not (RFC 5806).
falseEnable History-Info support (RFC 7044).
falseEnable Outbound Support or not (RFC 5626).
trueThe flow timer interval in seconds.
0The register expiration time in seconds.
300Enable call-info header for auto answer or not.
falseAlert-info header to be added in INVITE message when PBX is forwarding the page/intercom. Values includes:
INTERCOM: info=intercom.ALERT_AUTO_ANSWER: Alert-Info:;info=alert-autoanswer;delay=0.AUTO_ANSWER: info=Auto Answer.
Enable call-info header for auto answer. The value is "sip:portsip.com;answer-after=0".
trueEnable Require Answer Mode (RFC 5373) for auto answer.
falseEnable WWW authentication or not.
falseUser equal required for authentication name.
trueTracer server host.
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80Block if failed to login PortSIP PBX Web more than this times.
5The web blocked time in seconds.
3600The number of authentication failures.
50DOS attacks can send REGISTER/INVITE requests but do not reply to Challenge (407). Configure the amount of "fake" requests that PortSIP PBX will accept per IP Address. If this value is exceeded in "Detection Period" interval the source IP address is put in the Blacklist. IP will remain blacklisted till "SIP Blacklist time interval" expires.
1000The sip blocked time in seconds.
3600The detection period in seconds.
10If the amount of packets is exceeded, the PBX will block the source IP for "Level 1 blacklist time interval" seconds.
5000This is the time interval in seconds that an abusive IP Address remains in the blacklist
3600If the amount of packets is exceeded, the PBX will block the source IP for "Level 2 blacklist time interval" seconds.
2000This is the time interval in seconds that an abusive IP Address remains in the blacklist
30Content of this certificate file for STIR/SHAKEN support.
Content of this private certificate file for STIR/SHAKEN support.
Some custom configuration options serialized as json string.
OK
No content
Error
POST /api/admin/settings HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1419
{
"user_agent": null,
"blocked_user_agents": null,
"enable_shared_address_space_address_range": null,
"enable_digest_auth": null,
"enable_auth_mid_dialog": null,
"enable_digest_auth_int": null,
"enable_external_recording": null,
"enable_reject_bad_nonce": null,
"statistics_log_interval": null,
"dead_session_timeout": null,
"enable_session_timer": null,
"session_timer_duration": null,
"enable_to_tag_in_register": null,
"enable_congestion_management": null,
"congestion_management_metric": null,
"congestion_management_tolerance": null,
"enable_create_non_exist_extension": null,
"enable_prack": null,
"enable_tenant_level_trunk": null,
"enable_diversion_support": null,
"enable_history_info_support": null,
"enable_outbound_support": null,
"flow_timer": null,
"register_expiration_time": null,
"enable_auto_answer_alert_info_header": null,
"auto_answer_alert_info_header": null,
"enable_auto_answer_call_info_header": null,
"enable_require_answer_mode": null,
"enable_www_auth": null,
"user_equal_required_for_auth_name": null,
"trace_server_host": null,
"trace_server_port": null,
"web_failed_auth_amount": null,
"web_blacklist_time_interval": null,
"sip_failed_auth_amount": null,
"sip_failed_challenge_requests_amount": null,
"sip_blacklist_time_interval": null,
"sip_detection_period": null,
"sip_barrier_1_packets": null,
"sip_barrier_1_blocking_time": null,
"sip_barrier_2_packets": null,
"sip_barrier_2_blocking_time": null,
"stir_shaken_cert": null,
"stir_shaken_key": null,
"custom_options": null
}No content
Retrieve details of system notification settings.
OK
The email server type.
Can be either:
SMTP: Use generic SMTP server.MS365Use Microsoft 365 email service.GMAILUse Google Gmail service.
SMTP server used for sending mails.
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80A Reply-To address is identified by inserting the Reply-To header in your email.
It is the email address that the reply message is sent
when you want the reply to go to an email address that is different than the From: address.
Username or email address.
The authentication protocols.
Can be either:
DISABLE: Skip authentication mechanism.AUTO: Use auto-selected authentication algorithms by server (Currently only supports LOGIN and PLAIN).LOGIN: Use LOGIN authentication mechanism.PLAINUse PLAIN authentication mechanism.
AUTOPossible values: Whether to enable TLS/SSL.
trueWhether StartTLS is automatically enabled.
falseComma-separated list of email address that should receive notifications.
Allow up to 15 email addresses.
Apply the email server settings to all tenants.
trueThe hard disk threshold for email warning.
0.9Send a notification email when specified hard disk threshold is exceeded.
falseThe CPU threshold for email warning.
0.9Send a notification email when specified CPU threshold is exceeded.
falseThe memory threshold for email warning.
0.9Send an email notification when specified memory threshold is exceeded.
falseSend a notification email when ip blocked.
falseSend a notification email when license limit reached.
falseSend a notification email when some service disconnected.
falseSend a notification email when push notification certificates update failed.
falseError
GET /api/admin/notification HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"type": null,
"server": null,
"port": null,
"reply_to": null,
"username": null,
"auth": null,
"enable_tls_ssl": null,
"enable_starttls_auto": null,
"recipients": null,
"enable_tenant_access": null,
"hard_disk_threshold": null,
"notify_hard_disk_exceeded_threshold": null,
"cpu_threshold": null,
"notify_cpu_exceeded_threshold": null,
"memory_threshold": null,
"notify_memory_exceeded_threshold": null,
"notify_ip_blocked": null,
"notify_license_limited": null,
"notify_service_disconnected": null,
"notify_push_certs_update_failed": null
}Update system notification settings.
The email server type.
Can be either:
SMTP: Use generic SMTP server.MS365Use Microsoft 365 email service.GMAILUse Google Gmail service.
SMTP server used for sending mails.
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80A Reply-To address is identified by inserting the Reply-To header in your email.
It is the email address that the reply message is sent
when you want the reply to go to an email address that is different than the From: address.
Username or email address.
Password for email account.
The authentication protocols.
Can be either:
DISABLE: Skip authentication mechanism.AUTO: Use auto-selected authentication algorithms by server (Currently only supports LOGIN and PLAIN).LOGIN: Use LOGIN authentication mechanism.PLAINUse PLAIN authentication mechanism.
AUTOPossible values: Whether to enable TLS/SSL.
trueWhether StartTLS is automatically enabled.
falseComma-separated list of email address that should receive notifications.
Allow up to 15 email addresses.
Apply the email server settings to all tenants.
trueThe hard disk threshold for email warning.
0.9Send a notification email when specified hard disk threshold is exceeded.
falseThe CPU threshold for email warning.
0.9Send a notification email when specified CPU threshold is exceeded.
falseThe memory threshold for email warning.
0.9Send an email notification when specified memory threshold is exceeded.
falseSend a notification email when ip blocked.
falseSend a notification email when license limit reached.
falseSend a notification email when some service disconnected.
falseSend a notification email when push notification certificates update failed.
falseOK
No content
Error
POST /api/admin/notification HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 516
{
"type": null,
"server": null,
"port": null,
"reply_to": null,
"username": null,
"password": null,
"auth": null,
"enable_tls_ssl": null,
"enable_starttls_auto": null,
"recipients": null,
"enable_tenant_access": null,
"hard_disk_threshold": null,
"notify_hard_disk_exceeded_threshold": null,
"cpu_threshold": null,
"notify_cpu_exceeded_threshold": null,
"memory_threshold": null,
"notify_memory_exceeded_threshold": null,
"notify_ip_blocked": null,
"notify_license_limited": null,
"notify_service_disconnected": null,
"notify_push_certs_update_failed": null
}No content
Check email server configurations by sending testing email.
The recipient's e-mail address.
Mail subject.
Mail content.
OK
No content
Error
POST /api/admin/notification/test_email HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 48
{
"recipient": null,
"subject": null,
"content": null
}No content
Retrieve settings for SBC.
OK
The SBC domain.
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80Error
GET /api/sbc HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"domain": null,
"http_port": null,
"https_port": null,
"transports": null
}Update SBC configuration.
The SBC domain.
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80OK
No content
Error
POST /api/sbc HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 68
{
"domain": null,
"http_port": null,
"https_port": null,
"transports": null
}No content
Retrieve SBC token
OK
The access token for SBC.
Error
GET /api/sbc/token HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"token": "xxxxxxxxxxxxxxxxxxxxxxxxx"
}Regenerate SBC token
OK
The access token for SBC.
Error
POST /api/sbc/token HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"token": "xxxxxxxxxxxxxxxxxxxxx"
}Destroy SBC Token.
No Content
No content
Error
POST /api/sbc/token/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Retrieve settings of IM server.
OK
Host IPV4 address.
Host IPV6 address.
Host IPV4 address.
Host IPV6 address.
Error
GET /api/im HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"private_ipv4": null,
"private_ipv6": null,
"public_ipv4": null,
"public_ipv6": null
}Update IM server configuration.
Host IPV4 address.
Host IPV6 address.
Host IPV4 address.
Host IPV6 address.
OK
No content
Error
POST /api/im HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 79
{
"private_ipv4": null,
"private_ipv6": null,
"public_ipv4": null,
"public_ipv6": null
}No content
Retrieve IM server token
OK
The access token for IM Server.
Error
GET /api/im/token HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"token": "xxxxxxxxxxxxxxxxxxxxxx"
}Regenerate IM server token
OK
The access token for IM Server.
Error
POST /api/im/token HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"token": "xxxxxxxxxxxxxxxxx"
}Destroy IM server Token.
No Content
No content
Error
POST /api/im/token/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
List a collection of dealers.
OK
Total number of resource.
100Error
GET /api/dealers HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"items": [
{
"id": null,
"enabled": null,
"level": null,
"name": null,
"email": null,
"display_name": null,
"website": null,
"phone": null,
"address": null,
"description": null,
"max_tenants": null,
"max_extensions": null,
"tenant_full_access": null
}
]
}Create a dealer.
Enable this dealer or not.
trueDealer level includes:
DISTRIBUTOR: the first level of dealers.SUB_DISTRIBUTOR: the second level of dealers.RESELLER: the third level of dealers.
The user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
The password of dealer.
The email address.
example@example.comThe display name of user.
The website of user.
The mobile phone number of user.
The address.
The description of dealer.
The maximum number of tenants that the dealer is allowed to create.
100The maximum number of extensions that the dealer is allowed to create.
50000Whether or not the reseller is allowed to have full control over the tenant.
This attribute is not valid if not modified by first level dealer.
trueSuccess
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwError
POST /api/dealers HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 219
{
"enabled": null,
"level": null,
"name": null,
"password": null,
"email": null,
"display_name": null,
"website": null,
"phone": null,
"address": null,
"description": null,
"max_tenants": null,
"max_extensions": null,
"tenant_full_access": null
}{
"id": "xxxxxxxx"
}Get details of the dealer by it's unique ID.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwEnable this dealer or not.
trueDealer level includes:
DISTRIBUTOR: the first level of dealers.SUB_DISTRIBUTOR: the second level of dealers.RESELLER: the third level of dealers.
The user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
The email address.
example@example.comThe display name of user.
The website of user.
The mobile phone number of user.
The address.
The description of dealer.
The maximum number of tenants that the dealer is allowed to create.
100The maximum number of extensions that the dealer is allowed to create.
50000Whether or not the reseller is allowed to have full control over the tenant.
This attribute is not valid if not modified by first level dealer.
trueError
GET /api/dealers/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": null,
"enabled": null,
"level": null,
"name": null,
"email": null,
"display_name": null,
"website": null,
"phone": null,
"address": null,
"description": null,
"max_tenants": null,
"max_extensions": null,
"tenant_full_access": null
}Modify the settings of the dealer.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwEnable this dealer or not.
trueThe email address.
example@example.comThe display name of user.
The website of user.
The mobile phone number of user.
The address.
The description of dealer.
The maximum number of tenants that the dealer is allowed to create.
100The maximum number of extensions that the dealer is allowed to create.
50000Whether or not the reseller is allowed to have full control over the tenant.
This attribute is not valid if not modified by first level dealer.
trueOK
No content
Error
POST /api/dealers/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 178
{
"enabled": null,
"email": null,
"display_name": null,
"website": null,
"phone": null,
"address": null,
"description": null,
"max_tenants": null,
"max_extensions": null,
"tenant_full_access": null
}No content
Reset dealer's password.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe password of dealer.
OK
No content
Error
POST /api/dealers/{id}/password HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"password": null
}No content
Delete a dealer by it's unique ID.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwNo Content
No content
Error
POST /api/dealers/{id}/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Retrieve a collection of IP blacklist entries or whitelist entries.
Use the filter query parameter to retrieve just a subset of a collection.
Use the search query parameter to restrict the results of a request to match a search criterion.
Use the orderby query parameter to specify the sort order of the items returned from server.
The default order is ascending order.
Use the skip query parameter to set the number of items to skip at the start of a collection.
0Use the top query parameter to specify the page size of the result set.
100OK
Total number of resource.
100Error
GET /api/ip_filters HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"items": [
{
"value": null,
"id": null,
"cidr": null,
"target": null,
"expire_at": null,
"description": null
}
]
}Add a new IP blacklist entry or whitelist entry to the system.
The CIDR notation IP address and prefix length,
like "192.0.2.0/24" or "2001:db8::/32", as defined in RFC 4632 and RFC 4291.
IP rule's target:
ACCEPT: An accepted rule.DENY: A rejection rule.
The RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZRemarks for the IP rule.
OK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwError
POST /api/ip_filters HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 63
{
"cidr": null,
"target": null,
"expire_at": null,
"description": null
}{
"id": "xxxxxxxx"
}Retrieve IP blacklist entry or whitelist entry.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe CIDR notation IP address and prefix length,
like "192.0.2.0/24" or "2001:db8::/32", as defined in RFC 4632 and RFC 4291.
IP rule's target:
ACCEPT: An accepted rule.DENY: A rejection rule.
The RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZRemarks for the IP rule.
Error
GET /api/ip_filters/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": null,
"cidr": null,
"target": null,
"expire_at": null,
"description": null
}Update IP blacklist entry or whitelist entry that already exists.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe CIDR notation IP address and prefix length,
like "192.0.2.0/24" or "2001:db8::/32", as defined in RFC 4632 and RFC 4291.
IP rule's target:
ACCEPT: An accepted rule.DENY: A rejection rule.
The RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZRemarks for the IP rule.
OK
No content
Error
POST /api/ip_filters/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 63
{
"cidr": null,
"target": null,
"expire_at": null,
"description": null
}No content
Destroy a certain IP rule.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwNo Content
No content
Invalid rule ID supplied.
POST /api/ip_filters/{id}/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Export a collection of IP rules to file.
OK
Error
GET /api/ip_filters/export HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
binaryRetrieve a collection of transports
Use the filter query parameter to retrieve just a subset of a collection.
Use the search query parameter to restrict the results of a request to match a search criterion.
Use the orderby query parameter to specify the sort order of the items returned from server.
The default order is ascending order.
Use the skip query parameter to set the number of items to skip at the start of a collection.
0Use the top query parameter to specify the page size of the result set.
100OK
Total number of resource.
100Error
GET /api/transports HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"items": [
{
"id": null,
"protocol": null,
"port": null,
"verification": null
}
]
}Add a new transport.
The transport protocol:
Can be either:
UDP:TCP:TLS:
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80Indicates if PBX wishes (Optional) or requires (Mandatory) TLS clients to present a client certificate:
DISABLE: disable client certificate.OPTIONAL: client authentication optional.MANDATORY: force client authentication.
Created transport
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwError
POST /api/transports HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 49
{
"protocol": null,
"port": null,
"verification": null
}{
"id": "xxxxxxxx"
}Retrieve a transport by it's unique ID.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe transport protocol:
Can be either:
UDP:TCP:TLS:
A port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80Indicates if PBX wishes (Optional) or requires (Mandatory) TLS clients to present a client certificate:
DISABLE: disable client certificate.OPTIONAL: client authentication optional.MANDATORY: force client authentication.
Error
GET /api/transports/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": null,
"protocol": null,
"port": null,
"verification": null
}Update a new transport.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwA port number is a 16-bit unsigned integer, thus ranging from 0 to 65535. For TCP, port number 0 is reserved and cannot be used, while for UDP, the source port is optional and a value of zero means no port
80Indicates if PBX wishes (Optional) or requires (Mandatory) TLS clients to present a client certificate:
DISABLE: disable client certificate.OPTIONAL: client authentication optional.MANDATORY: force client authentication.
OK
No content
Error
POST /api/transports/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"port": null,
"verification": null
}No content
Destroy transport
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwNo Content
No content
Error
POST /api/transports/{id}/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Query transport's status
The transport protocol:
Can be either:
UDP:TCP:TLS:
Success
Status of transport includes:
ACTIVATED:DEACTIVATED:
Error
GET /api/transports/{id}/status HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"status": "ACTIVATED"
}Returns a list of tenant summary information. Note that it uses a different, smaller representation of a tenant than retrieving a single tenant.
Use the filter query parameter to retrieve just a subset of a collection.
Use the search query parameter to restrict the results of a request to match a search criterion.
Use the orderby query parameter to specify the sort order of the items returned from server.
The default order is ascending order.
Use the skip query parameter to set the number of items to skip at the start of a collection.
0Use the top query parameter to specify the page size of the result set.
100OK
Total number of resource.
100Error
GET /api/tenants HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"items": [
{
"id": null,
"name": null,
"domain": null,
"max_extensions": 100,
"current_extensions": 100,
"max_concurrent_calls": null,
"enabled": null,
"website": null,
"timezone": null,
"currency": null,
"region": null,
"avatar_file_name": null,
"avatar_file_size": null,
"avatar_file_url": null,
"created_at": null
}
]
}Create an new tenant.
The name of the tenant.
The SIP domain of tenant.
It is usually a fully qualified domain name (FQDN).
If there is no FQDN, you can also use the IP address of the PBX server as the SIP domain.
The SIP domain name is only used for SIP message authentication and does not require analysis.
The official website of tenant.
The IANA Time Zone names, such as "Asia/Shanghai".
The Currency code (ISO 4217).
USDA valid country code based on iso3166-1 alpha-3 standard. see: https://www.iso.org/iso-3166-country-codes.html
Enable this tenant or not.
trueAllow extension video recording.
falseAllow the user result api to return the user password and the user extension password.
falseAllow extension audio recording.
falseAllow dual track recording for calls.
falseEnable call billing or not.
falseEnable call billing feature or not.
falseEnable call statistics feature or not.
trueEnable contact center feature or not.
trueEnable message channels feature or not.
trueEnable Microsoft Teams feature or not.
trueEnable trunks feature or not.
trueEnable WhatsApp feature or not.
trueEnable CRM integrations feature or not.
trueWhether to enable night mode.
falseWhether to enable two-factor authentication.
falseSome custom configuration options serialized as json string
The maximum number of users that the tenant is allowed to create.
1000The maximum number of concurrent calls that the tenant is allowed to have.
20The maximum number of ring groups that the tenant is allowed to create.
20The maximum number of virtual receptionists that the tenant is allowed to create.
20The maximum number of call queues that the tenant is allowed to create.
20The maximum number of conference rooms that the tenant is allowed to be online at the same time.
20The maximum size of disk space that the tenant is allowed to have.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
""The maximum size of disk space that the tenant is allowed to have for IM service.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
""The maximum size of disk space that the extension user is allowed to have for IM service.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
1GBThe retention period in days of recordings.
180The retention period in days of call report files.
30The retention period in days of audit logs and event logs.
180The retention period in days of temporary files.
30The match method of contact:
Can be either:
DISABLE: Disable match.MATCH_EXACTLY: Match exactly.MATCH_LENGTH: Match at least specified number of characters.
MATCH_EXACTLYPossible values: The matched length of characters when contact_match_type is MATCH_LENGTH.
Method for adding Group, Queue or DID/DDI Names to Caller ID:
Can be either:
DISABLE: Do not add.APPEND: Append names.PREPEND: Prepend names.
APPENDPossible values: Method for adding Group, Queue or DID/DDI Names to Caller ID:
Can be either:
DISABLE: Do not add.APPEND: Append names.PREPEND: Prepend names.
APPENDPossible values: The interval for synchronizing contacts from the server, in minutes.
720Comma-separated list of email address that should receive notifications.
Allow up to 15 email addresses.
Whether to force reset the initial password.
falseCreated
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwError
POST /api/tenants HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1174
{
"name": null,
"domain": null,
"website": null,
"timezone": null,
"currency": null,
"region": null,
"enabled": null,
"enable_video_recording": null,
"ai_engine": null,
"enable_audio_recording": null,
"enable_dual_track_recording": null,
"enable_billing": null,
"enable_feature_billing": null,
"enable_feature_call_statistics": null,
"enable_feature_contact_center": null,
"enable_feature_message_channels": null,
"enable_feature_microsoft_teams": null,
"enable_feature_trunks": null,
"enable_feature_whats_app": null,
"enable_night_mode": null,
"enable_two_factor_authentication": null,
"custom_options": null,
"max_extensions": null,
"max_concurrent_calls": null,
"max_ring_groups": null,
"max_virtual_receptionists": null,
"max_call_queues": null,
"max_conference_rooms": null,
"disk_quota": null,
"im_disk_quota": null,
"extension_im_disk_quota": null,
"recording_retention": null,
"call_report_retention": null,
"log_retention": null,
"temp_file_retention": null,
"office_hours": null,
"e164": null,
"cdr_event": null,
"extension_event": null,
"contact_match_type": null,
"contact_match_length": null,
"contact_append_type": null,
"contact_inbound_rule_append_type": null,
"contact_update_interval": null,
"email_recipients": null,
"password_force_reset": null
}{
"id": "xxxxxxxx"
}Get detailed properties for a tenant.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe name of the tenant.
The SIP domain of tenant.
It is usually a fully qualified domain name (FQDN).
If there is no FQDN, you can also use the IP address of the PBX server as the SIP domain.
The SIP domain name is only used for SIP message authentication and does not require analysis.
The official website of tenant.
The IANA Time Zone names, such as "Asia/Shanghai".
The Currency code (ISO 4217).
USDA valid country code based on iso3166-1 alpha-3 standard. see: https://www.iso.org/iso-3166-country-codes.html
Enable this tenant or not.
trueAllow extension video recording.
falseAllow extension audio recording.
falseAllow dual track recording for calls.
falseEnable call billing or not.
falseAllow the user result api to return the user password and the user extension password.
falseEnable call billing feature or not.
falseEnable call statistics feature or not.
trueEnable contact center feature or not.
trueEnable message channels feature or not.
trueEnable Microsoft Teams feature or not.
trueEnable trunks feature or not.
trueEnable WhatsApp feature or not.
trueEnable CRM integrations feature or not.
trueWhether to enable night mode.
falseWhether to enable two-factor authentication.
falseSome custom configuration options serialized as json string
The maximum number of users that the tenant is allowed to create.
1000The maximum number of concurrent calls that the tenant is allowed to have.
20The maximum number of ring groups that the tenant is allowed to create.
20The maximum number of virtual receptionists that the tenant is allowed to create.
20The maximum number of call queues that the tenant is allowed to create.
20The maximum number of conference rooms that the tenant is allowed to be online at the same time.
20The maximum size of disk space that the tenant is allowed to have.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
""The used disk quota, an number followed by unit (KB, MB, GB, PB).
The maximum size of disk space that the tenant is allowed to have for IM service.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
""The maximum size of disk space that the extension user is allowed to have for IM service.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
1GBThe retention period in days of recordings.
180The retention period in days of call report files.
30The retention period in days of audit logs and event logs.
180The retention period in days of temporary files.
30The match method of contact:
Can be either:
DISABLE: Disable match.MATCH_EXACTLY: Match exactly.MATCH_LENGTH: Match at least specified number of characters.
MATCH_EXACTLYPossible values: The matched length of characters when contact_match_type is MATCH_LENGTH.
Method for adding Group, Queue or DID/DDI Names to Caller ID:
Can be either:
DISABLE: Do not add.APPEND: Append names.PREPEND: Prepend names.
APPENDPossible values: Method for adding Group, Queue or DID/DDI Names to Caller ID:
Can be either:
DISABLE: Do not add.APPEND: Append names.PREPEND: Prepend names.
APPENDPossible values: The interval for synchronizing contacts from the server, in minutes.
720Comma-separated list of email address that should receive notifications.
Allow up to 15 email addresses.
Whether to force reset the initial password.
falseThe RFC 3339 format is defined by The date_time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
2017-07-21T17:32:28ZThe name of the file.
The file size in bytes.
0The relative path to file url for file downloading.
/api/blobs/WexWdABcd5D4PDgzTKV3gAAAEu00WcKError
GET /api/tenants/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": null,
"name": null,
"domain": null,
"website": null,
"timezone": null,
"currency": null,
"region": null,
"enabled": null,
"enable_video_recording": null,
"ai_engine": null,
"enable_audio_recording": null,
"enable_dual_track_recording": null,
"enable_billing": null,
"enable_feature_billing": null,
"enable_feature_call_statistics": null,
"enable_feature_contact_center": null,
"enable_feature_message_channels": null,
"enable_feature_microsoft_teams": null,
"enable_feature_trunks": null,
"enable_feature_whats_app": null,
"enable_night_mode": null,
"enable_two_factor_authentication": null,
"custom_options": null,
"max_extensions": null,
"max_concurrent_calls": null,
"max_ring_groups": null,
"max_virtual_receptionists": null,
"max_call_queues": null,
"max_conference_rooms": null,
"disk_quota": null,
"used_disk_quota": null,
"im_disk_quota": null,
"extension_im_disk_quota": null,
"recording_retention": null,
"call_report_retention": null,
"log_retention": null,
"temp_file_retention": null,
"office_hours": null,
"outbound_caller_ids": null,
"e164": null,
"cdr_event": null,
"extension_event": null,
"contact_match_type": null,
"contact_match_length": null,
"contact_append_type": null,
"contact_inbound_rule_append_type": null,
"contact_update_interval": null,
"email_recipients": null,
"password_force_reset": null,
"created_at": null,
"avatar_file_name": null,
"avatar_file_size": null,
"avatar_file_url": null
}Update tenant properties by it's unique ID.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe name of the tenant.
The SIP domain of tenant.
It is usually a fully qualified domain name (FQDN).
If there is no FQDN, you can also use the IP address of the PBX server as the SIP domain.
The SIP domain name is only used for SIP message authentication and does not require analysis.
The official website of tenant.
The IANA Time Zone names, such as "Asia/Shanghai".
The Currency code (ISO 4217).
USDA valid country code based on iso3166-1 alpha-3 standard. see: https://www.iso.org/iso-3166-country-codes.html
Enable this tenant or not.
trueAllow extension video recording.
falseAllow extension audio recording.
falseAllow dual track recording for calls.
falseEnable call billing or not.
falseEnable call billing feature or not.
falseAllow the user result api to return the user password and the user extension password.
falseEnable call statistics feature or not.
trueEnable contact center feature or not.
trueEnable message channels feature or not.
trueEnable Microsoft Teams feature or not.
trueEnable trunks feature or not.
trueEnable WhatsApp feature or not.
trueEnable CRM integrations feature or not.
trueWhether to enable night mode.
falseWhether to enable two-factor authentication.
falseSome custom configuration options serialized as json string
The maximum number of users that the tenant is allowed to create.
1000The maximum number of concurrent calls that the tenant is allowed to have.
20The maximum number of ring groups that the tenant is allowed to create.
20The maximum number of virtual receptionists that the tenant is allowed to create.
20The maximum number of call queues that the tenant is allowed to create.
20The maximum number of conference rooms that the tenant is allowed to be online at the same time.
20The maximum size of disk space that the tenant is allowed to have.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
""The maximum size of disk space that the tenant is allowed to have for IM service.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
""The maximum size of disk space that the extension user is allowed to have for IM service.
Specify a positive number and specify the unit at the same time, KB, MB, GB, PB are all allowed.
For example: 100MB, 1000GB. Leave it empty, means unlimited.
1GBThe retention period in days of recordings.
180The retention period in days of call report files.
30The retention period in days of audit logs and event logs.
180The retention period in days of temporary files.
30The match method of contact:
Can be either:
DISABLE: Disable match.MATCH_EXACTLY: Match exactly.MATCH_LENGTH: Match at least specified number of characters.
MATCH_EXACTLYPossible values: The matched length of characters when contact_match_type is MATCH_LENGTH.
Method for adding Group, Queue or DID/DDI Names to Caller ID:
Can be either:
DISABLE: Do not add.APPEND: Append names.PREPEND: Prepend names.
APPENDPossible values: Method for adding Group, Queue or DID/DDI Names to Caller ID:
Can be either:
DISABLE: Do not add.APPEND: Append names.PREPEND: Prepend names.
APPENDPossible values: The interval for synchronizing contacts from the server, in minutes.
720Comma-separated list of email address that should receive notifications.
Allow up to 15 email addresses.
Whether to force reset the initial password.
falseOK
No content
Error
POST /api/tenants/{id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1174
{
"name": null,
"domain": null,
"website": null,
"timezone": null,
"currency": null,
"region": null,
"enabled": null,
"enable_video_recording": null,
"ai_engine": null,
"enable_audio_recording": null,
"enable_dual_track_recording": null,
"enable_billing": null,
"enable_feature_billing": null,
"enable_feature_call_statistics": null,
"enable_feature_contact_center": null,
"enable_feature_message_channels": null,
"enable_feature_microsoft_teams": null,
"enable_feature_trunks": null,
"enable_feature_whats_app": null,
"enable_night_mode": null,
"enable_two_factor_authentication": null,
"custom_options": null,
"max_extensions": null,
"max_concurrent_calls": null,
"max_ring_groups": null,
"max_virtual_receptionists": null,
"max_call_queues": null,
"max_conference_rooms": null,
"disk_quota": null,
"im_disk_quota": null,
"extension_im_disk_quota": null,
"recording_retention": null,
"call_report_retention": null,
"log_retention": null,
"temp_file_retention": null,
"office_hours": null,
"e164": null,
"cdr_event": null,
"extension_event": null,
"contact_match_type": null,
"contact_match_length": null,
"contact_append_type": null,
"contact_inbound_rule_append_type": null,
"contact_update_interval": null,
"email_recipients": null,
"password_force_reset": null
}No content
Switch between tenants.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
No content
Error
POST /api/tenants/switch HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Get the dealer to which the tenant belongs.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
Error
GET /api/tenants/{id}/dealers HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"items": [
{
"id": null,
"enabled": null,
"level": null,
"name": null,
"display_name": null
}
]
}Designate tenant to dealer.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
No content
Error
POST /api/tenants/{id}/dealers/{dealer_id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Remove tenant from dealer.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwNo Content
No content
Error
POST /api/tenants/{id}/dealers/{dealer_id}/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwNo Content
No content
Invalid name supplied
Tenant not found
POST /api/tenants/{id}/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Retrieve license information
OK
API version of PortSIP PBX.
Product name of PortSIP PBX.
PortSIP PBXMax Simultaneous Calls allowed for this version.
License key of PortSIP PBX.
Company name of license user.
Contact email of license user.
Error
GET /api/license HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"api_version": null,
"product_name": null,
"max_sim_calls": null,
"license_key": null,
"company_name": null,
"contact_email": null
}Update license
License key of PortSIP PBX.
OK
No content
Error
POST /api/license HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"license_key": "xxxxxxxxxxxxxxxxxxxxx"
}No content
Retrieve content of certificate key.
OK
Content of this certificate file for TLS or WSS transport protocol. The certificate file MUST be PEM-encoded with X.509.
Content of this private certificate file for TLS or WSS transport protocol.
Error
GET /api/key HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"crt": null,
"key": null
}Update certificate key.
Content of this certificate file for TLS or WSS transport protocol. The certificate file MUST be PEM-encoded with X.509.
Content of this private certificate file for TLS or WSS transport protocol.
No Content
No content
Error
POST /api/key HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 23
{
"crt": null,
"key": null
}No content
Update brand information.
The color scheme:
Can be either:
BLUE: BlueDARK: DarkGREEN: GreenLIGHT_BLUE: Light BluePURPLE: Purple
The unique ID of the file.
NzAwNTUxOTA5NzczMTQ4MTYwThe unique ID of the file.
NzAwNTUxOTA5NzczMTQ4MTYwThe title text.
This text will be displayed as the title.
The copyright text.
This text will be displayed as the copyright.
The product name text.
This text will be displayed as the product name.
The website text.
This text will be displayed as the product website.
The forum url.
This text will be displayed as the forum url.
The bottom text, maximum size is 256 characters. This text will be displayed at the bottom of the login page. It can be either plain text or HTML code.
OK
No content
Error
POST /api/brand HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 135
{
"theme": "BLUE",
"logo": null,
"favicon": null,
"title": null,
"copyright": null,
"product": null,
"website": null,
"forum": null,
"bottom_text": null
}No content
Get details of current dealer.
OK
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwEnable this dealer or not.
trueDealer level includes:
DISTRIBUTOR: the first level of dealers.SUB_DISTRIBUTOR: the second level of dealers.RESELLER: the third level of dealers.
The user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
The email address.
example@example.comThe display name of user.
The website of user.
The mobile phone number of user.
The address.
The description of dealer.
The maximum number of tenants that the dealer is allowed to create.
100The maximum number of extensions that the dealer is allowed to create.
50000Error
GET /api/dealer HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": null,
"enabled": null,
"level": null,
"name": null,
"email": null,
"display_name": null,
"website": null,
"phone": null,
"address": null,
"description": null,
"max_tenants": null,
"max_extensions": null
}Modify the settings of the current dealer.
The email address.
example@example.comThe display name of user.
The website of user.
The mobile phone number of user.
The address.
The description of dealer.
OK
No content
Error
POST /api/dealer HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 96
{
"email": null,
"display_name": null,
"website": null,
"phone": null,
"address": null,
"description": null
}No content
Get status of current dealer.
OK
The version information of PortSIP PBX.
The maximum number of sub-dealers.
The number of current sub-dealers.
The maximum number of authorized users purchased by the dealer from distributor.
The number of current users of the dealer.
The maximum number of tenants the current dealer is allowed to create.
The number of current tenants of the dealer.
Error
GET /api/dealer/status HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"version": null,
"max_dealers": null,
"current_dealers": null,
"max_users": null,
"current_users": null,
"max_tenants": null,
"current_tenants": null
}Change current dealer username.
The user's account name.
Only letters, numbers, and the following special characters can be added: underscore, dash, single quote, and period (_, -, ', and .).
Username cannot start or end with period (.).
admin, system, administrator, and root are reserved names for system admin only with case ignored.
OK
No content
Error
POST /api/dealer/username HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"name": null
}No content
Reset current dealer password.
The password of dealer.
The password of dealer.
OK
No content
Error
POST /api/dealer/password HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"old_password": null,
"new_password": null
}No content
Get a collection of assignees of provider.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
Error
GET /api/providers/{id}/assignees HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"items": [
{
"tenant_id": null,
"did_numbers": null,
"concurrency": null
}
]
}Check if a provider is assigned to the tenant.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwOK
The semicolon-separated list of DID/DDI pool number range or DID/DDI number. Assign a DID/DDI pool number range or DID/DDI number to the tenant. For example: 3000;12000-18000. The DID/DDI pool number range should not overlap with other tenant DID/DDI pool number ranges and numbers.
The max number of concurrent calls.
Not Found
GET /api/providers/{id}/assignees/{tenant_id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"did_numbers": null,
"concurrency": null
}Assign provider to tenant.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe semicolon-separated list of DID/DDI pool number range or DID/DDI number. Assign a DID/DDI pool number range or DID/DDI number to the tenant. For example: 3000;12000-18000. The DID/DDI pool number range should not overlap with other tenant DID/DDI pool number ranges and numbers.
The max number of concurrent calls.
No Content
No content
Error
POST /api/providers/{id}/assignees/{tenant_id} HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"did_numbers": null,
"concurrency": null
}No content
Unassign provider from tenant.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwThe unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYwNo Content
No content
Error
POST /api/providers/{id}/assignees/{tenant_id}/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Retrieve settings of data flow server.
OK
Host IPV4 address.
Host IPV6 address.
Host IPV4 address.
Host IPV6 address.
Error
GET /api/dataflow HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"private_ipv4": null,
"private_ipv6": null,
"public_ipv4": null,
"public_ipv6": null
}Update data flow server configurations.
Host IPV4 address.
Host IPV6 address.
Host IPV4 address.
Host IPV6 address.
OK
No content
Error
POST /api/dataflow HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 79
{
"private_ipv4": null,
"private_ipv6": null,
"public_ipv4": null,
"public_ipv6": null
}No content
Retrieve data flow server token
OK
The api token for extended servers.
xxxxxxyyyyyyyyyyyyyyyzzzzzzzzzzzz.Error
GET /api/dataflow/token HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"token": "xxxxxxxxxxxxxxxxxxxxxx"
}Regenerate data flow server token
OK
The api token for extended servers.
xxxxxxyyyyyyyyyyyyyyyzzzzzzzzzzzz.Error
POST /api/dataflow/token HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"token": "xxxxxxxxxxxxxxxxx"
}Destroy data flow server Token.
No Content
No content
Error
POST /api/dataflow/token/destroy HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated
Was this helpful?