List apps

GET /apps

Get all apps for the authenticated user

Responses

  • 200 application/json

    List of apps

    Hide response attributes Show response attributes object
    • createdAt string

      Creation timestamp

    • id integer Required

      App ID

    • name string Required

      App name

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • errorCode string Required

      Error code

    • message string Required

      Error message

GET /apps
curl \
 --request GET 'https://auth.bank.place/apps' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "createdAt": "string",
    "id": 42,
    "name": "string"
  }
]
Response examples (401)
{
  "message": "Invalid request parameters",
  "errorCode": "invalid_request"
}