Get the details of an existing MSSP
GET/api/v1/mssp/:mssp-id
x-public: "true"
Returns the details of an existing MSSP account
Request
Path Parameters
mssp-id stringrequired
the id of the MSSP of interest
Responses
- 200
- 404
- 429
OK
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
msspId string
name string
createdBy string
createdAt int64
customerSupportId string
contactInfo object
firstName stringrequired
Possible values: non-empty
and <= 63 characters
lastName stringrequired
Possible values: non-empty
and <= 63 characters
email stringrequired
Possible values: non-empty
and <= 128 characters
{
"msspId": "string",
"name": "string",
"createdBy": "string",
"createdAt": 0,
"customerSupportId": "string",
"contactInfo": {
"firstName": "string",
"lastName": "string",
"email": "string"
}
}
The MSSP does not exist
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Rate limiting error
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Loading...