Applications

Manage your Mergify application details.


Get current application

GET /application

Get the current authenticated application

Application Key
200 Successful Response
idstring <uuid4>required
namestringrequired
account_scopeApplicationAccountScoperequired
idintegerrequired
loginstringrequired
scope"admin" | "ci"required
Enum: admin ci
Example Response

                          {
  "id": "e155518c-ca1b-443c-9be9-fe90fdab7345",
  "name": "an application name",
  "scope": "admin",
  "account_scope": {
    "id": 123456,
    "login": "Mergifyio"
  }
}
                        
403 Forbidden
404 Not found
409 Conflict
422 Unprocessable entity
Example Request
curl -X GET "https://api.mergify.com/v1/application" \
  -H "Authorization: Bearer <token>"

Was this page helpful?