Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. In the Developer Portal, go to the Applications page, and click Create New Application.                                                                              

    Image RemovedImage Added

  2. In the Create Application dialog, enter the Application Name, and select Web or Mobile in the Type field. You can also add a description.

  3. If you want to subscribe to an API, click Create and Continue. This will open the Create Subscription dialog.
    If not, click Create and Exit to create your application entry and exit the Create Application dialog. 

...

  1. In the Create Subscription dialog, use the API Search field to find an API you want to subscribe to and click the API card to select it.
    After selecting all the APIs you want, click Continue.
    NOTE: You can subscribe only to APIs that allow subscription.

    Image RemovedImage Added

  2. In the Subscription tab, you can add an optional comment to your selected APIs. Click Continue.

  3. In the Register tab, you will see a summary page of your application entry and the APIs you selected.
    Click Register to submit your application entry and subscription request.

  4. On the Applications page, application entries with pending or approved API subscriptions have a key icon ((blue star)) in addition to the edit icon ((blue star)) and delete icon ( (blue star) ).
    TIP: Click (blue star) to copy the Client Secret to your clipboard quickly.

  5. To show the status of the subscription, click on the application entry card. The status can be Active, Revoked, or Pending.

...

After your API subscription is approved, you can use your application's client secret as your API Key to access an approved API.

  1. Edit your application entry or click the key icon ((blue star)) on your application’s card to copy the Client Secret to your clipboard.

  2. When you configure your application to send a request, add the following Authorization request header:

    • For an API published with OAS 2.0:

      Code Block
      Authorization: Bearer <client secret>
    • For an API published with OAS 3.0:

      Code Block
      Authorization: <client secret>
  3. Replace <client secret> with the value stored in your clipboard.
    IMPORTANT: This must be the only Authorization request header in your application.

...