Download OpenAPI specification:Download
Manage your resources across your tenant. Once a resource is added to the relevant app, it can be specified in an authentication request in order to grant the user access to only this resource.
Create a resource in a specific tenant
{- "name": "My Resource",
- "description": "string",
- "uri": "string",
- "access_token_ttl": 0,
- "refresh_token_ttl": 0,
- "max_refresh_rotate": 0
}
{- "result": {
- "resource_id": "string",
- "tenant_id": "string",
- "name": "string",
- "description": "string",
- "uri": "string",
- "access_token_ttl": 0,
- "refresh_token_ttl": 0,
- "max_refresh_rotate": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
}
Retrieve all resources created in the tenant
{- "result": [
- {
- "resource_id": "string",
- "tenant_id": "string",
- "name": "string",
- "description": "string",
- "uri": "string",
- "access_token_ttl": 0,
- "refresh_token_ttl": 0,
- "max_refresh_rotate": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
Retrieve a specific resource by its URI
{- "result": {
- "resource_id": "string",
- "tenant_id": "string",
- "name": "string",
- "description": "string",
- "uri": "string",
- "access_token_ttl": 0,
- "refresh_token_ttl": 0,
- "max_refresh_rotate": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
}
Update a specific resource
{- "name": "My Resource",
- "description": "string",
- "uri": "string",
- "access_token_ttl": 0,
- "refresh_token_ttl": 0,
- "max_refresh_rotate": 0
}
{- "result": {
- "resource_id": "string",
- "tenant_id": "string",
- "name": "string",
- "description": "string",
- "uri": "string",
- "access_token_ttl": 0,
- "refresh_token_ttl": 0,
- "max_refresh_rotate": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
}