GET {{baseUrl}}/marketplace/apps/:appId/requests?page_size=30&next_page_token=R4aF9Oj0fVM2hhezJTEmSKaBSkfesDwGy42&status=pending
Use this API to get an app's user requests and the status of their approval. Scopes: marketplace_app:read:admin
Rate Limit Label: Medium
.
Body
PARAM
Key | Datatype | Required | Description |
page_size
|
number | The number of records returned within a single API call. | |
next_page_token
|
string | The next page token is used to paginate through large result sets. The API returns a next page token whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes. | |
status
|
string | The type of app request to query: * `pending` — Only pending app requests. * `approved` — Only approved app requests. * `rejected` — Only rejected app requests. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"next_page_token": "w7587w4eiyfsudgf",
"page_size": 30,
"requests": [
{
"request_user_id": "f1sTWCMaTmOIZxLMlmHvEQ",
"request_user_name": "Jill Chill",
"request_user_email": "jchill@example.com",
"request_user_department": "4PCPf4PSk@gutSUweSRCXDcxnB.pk",
"request_date_time": "2021-07-21T17:32:28Z",
"reason": "I want to use this app.",
"status": "pending"
},
{
"request_user_id": "f1sTWCMaTmOIZxLMlmHvEQ",
"request_user_name": "Jill Chill",
"request_user_email": "jchill@example.com",
"request_user_department": "4HoGOUZr0aQX@hawqRMcgCEGUWB.ntp",
"request_date_time": "2021-07-21T17:32:28Z",
"reason": "I want to use this app.",
"status": "pending"
}
]
} |
ENDPOINTS