Skip to content

Application Status Data for Any Location

Request

Retrieves the application's installation status in a specific location. Use it after the installation callback to confirm that the status is active.

For the complete owner grant → partner confirmation → status check flow, see Install & test your app before moderation.

Security
BearerPartner
Path
location_idnumberrequired

Location ID

application_idnumberrequired

Application ID

Headers
Acceptstringrequired

e.g. application/vnd.api.v2+json

Example:application/vnd.api.v2+json
curl -i -X GET \
  'https://developer.alteg.io/_mock/en/developers/openapi/marketplace/salon/{location_id}/application/{application_id}' \
  -H 'Accept: application/vnd.api.v2+json' \
  -H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>'

Responses

Info about application location link

Bodyapplication/json
successboolean(Successful response status)

Response status.

Example:true
dataobject
Example:
{ "logs": [ {}, {} ], "payments": [ {} ], "connection_status": { "status": "active", "created_at": "2022-06-27 12:20:02" } }
metaArray of any or object(Empty meta object)

Additional response data (empty object or empty array)

Example:
{}
Response
{ "success": true, "data": { "logs": [], "payments": [], "connection_status": {} } }