Seamless login
GET/api/v1/mssp/:mssp-id/managed-tenant/:tenant-id/login
x-public: "true"
Seamless login to managed tenant
Request
Path Parameters
mssp-id stringrequired
the mssp the managed tenants belong to
tenant-id stringrequired
the prisma id or external tenant if of the managed tenant of interest
Query Parameters
landing_page string
The landing page for redirection on prisma tenant
Responses
- 200
- 400
- 401
- 404
- 429
Login Successful
- application/json
- Schema
- Example (from schema)
Schema
token string
location string
{
"token": "string",
"location": "string"
}
MsspId doesnt match with token
- 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
]
}
}
Authentication 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
]
}
}
Tenant Not found
- 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
token string
location string
{
"token": "string",
"location": "string"
}
Loading...