Get applications

GET /applications

List all registered applications

Responses

  • 200 application/json

    Get applications

    Hide response attributes Show response attributes object
    • id string
    • application_id string
    • application_name string
    • callback_url string
    • confidential boolean
GET /applications
curl \
 --request GET 'https://www.gitlab.com/api/v4/applications' \
 --header "Private-Token: $API_KEY"
Response examples (200)
[
  {
    "id": "string",
    "application_id": "5832fc6e14300a0d962240a8144466eef4ee93ef0d218477e55f11cf12fc3737",
    "application_name": "MyApplication",
    "callback_url": "https://redirect.uri",
    "confidential": true
  }
]