Get

Retrieve a list of your APPKiosks

Parameters:

Name

Optional / Required

Data type

Description

Default

return_fields

optional

String

Customize the responses by setting the return fields (id, create_date, update_date, name)

id, create_date, update_date, name

Demo

URL Find your token on - yumpu.com Token

Optional parameters:

return_fields

Add optional parametersRun request

Example:

curl -X GET -H "X-ACCESS-TOKEN: YOUR_ACCESS_TOKEN" "https://api.yumpu.com/2.0/appkiosks.json"

The result will be:

{
  "total": 1,
  "appkiosks": [
    {
      "id": 1234,
      "create_date": "2021-06-25 08:42:32",
      "update_date": "2025-08-28 10:12:29",
      "name": "My APPKiosk"
    }
  ],
  "state": "success",
  "completed_in": 0.0283
}

Last updated

Was this helpful?