Customer Management
Get Customers
GET
https://[customer].testresults.io/api/management/customers
Gets all active (without archive) customers.
Headers
Name | Type | Description |
---|---|---|
Authentication | string | Authentication token |
Get archive Customers
GET
https://[customer].testresults.io/api/management/customers/archive
Get archive customers.
Headers
Name | Type | Description |
---|---|---|
Authentication | string | Authentication token |
Get Customer details
GET
https://[customer].testresults.io/api/management/customers/:cId
Gets customer details.
Path Parameters
Name | Type | Description |
---|---|---|
cId | string | Customer ID |
Headers
Name | Type | Description |
---|---|---|
Authentication | string | Authentication token |
Create new Customer
POST
https://[customer].testresults.io/api/management/customers
Creates new Customer.
Headers
Name | Type | Description |
---|---|---|
Authentication | string | Authentication token |
Request Body
Name | Type | Description |
---|---|---|
Name | string | Customer Name |
Subdomain | string | Customer Subdomain |
Appliances | string | Target groups, comma separated |
Update Customer
PUT
https://[customer].testresults.io/api/management/customers/:cId
Updates an existing Customer.
Path Parameters
Name | Type | Description |
---|---|---|
cId | string | Customer ID |
Headers
Name | Type | Description |
---|---|---|
Authentication | string | Authentication token |
Request Body
Name | Type | Description |
---|---|---|
Archived | boolean | Archive flag |
Name | string | Customer Name |
Subdomain | string | Customer Subdomain |
Appliances | string | Target groups, comma separated |
Delete Customer
DELETE
https://[customer].testresults.io/api/management/customers/:cId
Deletes Customer
Path Parameters
Name | Type | Description |
---|---|---|
cId | string | Customer ID |
Headers
Name | Type | Description |
---|---|---|
Authentication | string | Authentication token |
Last updated