API Reference/Management/Third Party Apps
POST
/v1/mgmt/thirdparty/consents/search

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

application/jsonRequired
appIdstring
userIdstring
consentIdstring
pageinteger

Page number starting with 0 for the first page

Format: "int32"
tenantIdstring
curl -X POST "https://api.descope.com/v1/mgmt/thirdparty/consents/search" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "appId": "string",
    "userId": "string",
    "consentId": "string",
    "page": 0,
    "tenantId": "string"
  }'

OK

{
  "consents": [
    {
      "id": "string",
      "appId": "string",
      "userId": "string",
      "scopes": [
        "string"
      ],
      "grantedBy": "string",
      "createdTime": 0,
      "tenantId": "string",
      "ExpireTime": "string"
    }
  ],
  "total": 0
}

Was this helpful?