Check integration status and settings

You're viewing Apigee Edge documentation.
Go to the Apigee X documentation.
info

This page describes how to check the status and settings of the Apigee Edge API hub connector integration in your Apigee Edge organization after it is enabled.

Checking API hub connector integration status

To check the status of the API hub connector integration, you must have the orgadmin role within the Apigee Edge organization.

To check the current status of the API hub connector integration for an organization, use the following command:

curl -X GET https://api.enterprise.apigee.com/v1/organizations/ORG_NAME uapim/status \
  -H "Authorization: Bearer OAUTH_TOKEN

Where:

  • ORG_NAME is the name of your Apigee Edge organization.
  • OAUTH_TOKENis the OAuth token used to authenticate the request. For more information on creating an OAuth token, see Get the tokens.

A successful response will look similar to the following:

  {
    "status": "running",
    "lastUpdated": "04-16-2025 00:56:45"
  }

"status": "running" indicates that the API hub connector integration integration is active and data synchronization is in progress.

"lastUpdated" shows the timestamp of the last status update.

Checking API hub connector integration settings

To retrieve the API hub connector integration settings for an organization, make a GET request to the Edge management API:

curl -X GET https://api.enterprise.apigee.com/v1/organizations/ORG_NAME uapim/settings \
  -H "Authorization: Bearer OAUTH_TOKEN"

Where:

  • ORG_NAME is the name of your Apigee Edge organization.
  • OAUTH_TOKENis the OAuth token used to authenticate the request. For more information on creating an OAuth token, see Get the tokens.

A successful response will look similar to the following:

  {
    "enabled": true,
    "gatewayId": "my-gateway-id"
  }

"enabled": true confirms that the API hub connector integration is activated for the organization.

"gatewayId" displays the Instance Resource Name to which this Apigee Edge organization is connected.