PearPear

Read a pending authorization interaction

Returns the client and scopes the consent screen renders. Readable before login so the UI can show the login step; once login binds an account, only that account may read it.

GET
/interaction/{uid}

Path Parameters

uid*string

Response Body

application/json

curl -X GET "https://example.com/interaction/string"
{  "uid": "string",  "prompt": {    "name": "string",    "details": {      "property1": null,      "property2": null    }  },  "params": {    "property1": null,    "property2": null  },  "client": {    "clientId": "string",    "clientName": "string",    "redirectUris": [      "string"    ]  }}