Get Reseller by Id
Select
SaaS
Get reseller using metallic reseller id.
Path Variables
Field | Description | Type | Notes |
---|---|---|---|
resellerId | Reseller metallic id | UUID |
Response Body
Field | Description | Type | Notes |
---|---|---|---|
id | Reseller metallic id | UUID | |
type | Type indicating it is reseller | String Enum allowed values: "reseller" | |
status | Reseller status | String Enum allowed values: "active" | |
insertTs | Reseller created time | Timestamp | |
updateTs | Reseller last updated time | Timestamp | |
externalId | Reseller ID in Partner system | String / UUID | |
name | Reseller name | String | |
website | Reseller website | String | |
contacts | Reseller contacts | Contact Objects array | Refer to Contact Object on create reseller request. |
workloadAccess | Access to manage accounts | Boolean |
Path Parameters
- resellerId string required
Responses
- 200
- 404
- application/json
- Schema
- Get Reseller by Id - Success
Schema
{
"data": {
"id": "E4295015-6535-4989-9457-1BA12040A7EF",
"insertTs": "2022-09-20T08:42:52",
"updateTs": "2022-09-20T08:42:56",
"name": "testreseller",
"type": "reseller",
"status": "active",
"contacts": [
{
"email": "admin@testreseller.com",
"firstName": "Brooks",
"lastName": "Price",
"phone": "201-200-5904",
"address": {
"addressLine1": "1 Commvault",
"city": "Tinton Fall",
"state": "New York",
"country": "United States",
"postalCode": "508001"
},
"type": "primary"
}
],
"website": "www.testreseller.com",
"externalId": "c36c7995-cddb-459b-b145-f6385e92b844",
"workloadAccess": false
}
}
Not Found
- application/json
- Schema
- Example (from schema)
- Example
Schema
error object
code int32message string
{
"error": {
"code": 1006,
"message": "Record not found"
}
}
{
"error": {
"code": 1006,
"message": "Record not found"
}
}
Loading...