v1
latestOpenAPI 3.1.02026-07-245531,0212.1 MBCustomers
Create a new customer
- The API supports the creation of Druva Provisioned customers.
- If no attributes are specified, an MSC Provisioned managed customer is created by default.
- The only supported attributes are licenseManagedAllowed and dataAccessAllowed. Providing any other attributes will result in an error.
- For dataAccessAllowed, the only supported value is 1 (Managed).
- This is an asynchronous operation. Upon initiation, a taskID is generated and can be retrieved from the success response. Use this taskID with the 'Get Task Details' API to track the progress of the operation.
post/msp/v3/customers
Headers
Authorizationstring required
Specify the Bearer access token
Request body
Example request
{
"accountName": "Druva",
"address": "213 Derrick Street Boston, MA 02130 USA",
"customerName": "Druva",
"phone": "12345678910",
"tenantAdmins": [
1,
2,
3
],
"features": [
{
"name": "Security Posture and Observability"
}
],
"attributes": [
{
"name": "licenseManagementAllowed",
"value": "1"
}
]
}Response
Ok
Example response
{
"task": {
"id": "c8b54819-486a-497a-b86e-5b93f2422711"
}
}