Skip to content

Revoke Solution Credential

POST
/v1/portal/credentials/{solution_id}/revoke
curl --request POST \
--url 'https://example.com/v1/portal/credentials/example/revoke?tenant_id=&lease_id=' \
--header 'Content-Type: application/json' \
--data '{}'
solution_id
required
Solution Id
string
tenant_id
Tenant Id
string
""
lease_id
Lease Id
string
""
X-FractalOps-Tenant-Id
Any of:
string
x-pomerium-jwt-assertion
Any of:
string
Media typeapplication/json
Any of:
object
key
additional properties
any
Examplegenerated
{}

Successful Response

Media typeapplication/json
PortalCredentialRevokeOut
object
solution_id
Solution Id
string
""
lease_id
Lease Id
string
""
status
Status
string
""
revoked_at
Revoked At
string
""
Example
{
"solution_id": "",
"lease_id": "",
"status": "",
"revoked_at": ""
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}