Skip to main content
GET
/
virtual_tag_configs
/
{token}
/
status
Get virtual tag config processing status
curl --request GET \
  --url https://api.vantage.sh/v2/virtual_tag_configs/{token}/status \
  --header 'Authorization: Bearer <token>'
{
  "token": "vtag_1234",
  "processing": true,
  "providers": [
    {
      "provider": "aws",
      "status": "processing"
    },
    {
      "provider": "gcp",
      "status": "complete"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

token
string
required

Response

Processing is complete

VirtualTagConfigStatus model

token
string
required

The token of the VirtualTagConfig.

Example:

"vtag_1234"

processing
boolean
required

Whether the VirtualTagConfig is currently processing. True if any provider has not completed processing.

providers
object[]
required

Processing status broken down by provider.