Skip to main content
POST
/
v3
/
oauth
/
installation
/
status
Get installed-app status snapshot
curl --request POST \
  --url https://api.scalev.com/v3/oauth/installation/status \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "token_type": "access",
  "client_id": "<string>",
  "client_secret": "<string>"
}
'
{
  "authorized_business_id": 123,
  "client_id": "<string>",
  "is_active": true,
  "is_enabled": true,
  "granted_scopes": [
    "<string>"
  ],
  "webhook_status": "active",
  "granted_webhook_events": [
    "<string>"
  ],
  "approved_billing_tags": [
    {
      "billing_tag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tag_code": "<string>",
      "label": "<string>",
      "price": 123,
      "currency": "<string>",
      "action_key": "<string>"
    }
  ],
  "application": {
    "name": "<string>"
  },
  "manage_launch_available": true,
  "updated_at": "2023-11-07T05:31:56Z"
}

Body

application/json
token
string
required

OAuth access or refresh token reference for installation lookup.

token_type
enum<string>
required
Available options:
access,
refresh
client_id
string
required
client_secret
string
required

Response

OAuth installation status snapshot

authorized_business_id
integer
required
client_id
string
required
is_active
boolean
required
is_enabled
boolean
required
granted_scopes
string[]
required
webhook_status
enum<string>
required
Available options:
active,
inactive
granted_webhook_events
string[]
required
approved_billing_tags
object[]
required
application
object
manage_launch_available
boolean
updated_at
string<date-time>