For the complete documentation index, see llms.txt. This page is also available as Markdown.

API quickstart

Create an API token and make your first Marketplace Platform API request.

Marketplace Platform REST APIs provide programmatic access to accounts, orders, subscriptions, billing, notifications, and other Marketplace resources.

Use this guide to create an API token and make your first API call.

1

Before you start

Ensure that you have:

  • Access to a Marketplace Platform account.

  • Permission to create API tokens in the Marketplace.

  • A tool for sending requests, such as Postman.

2

Generate an API token

Marketplace Platform APIs use API tokens for authentication.

To create a token:

  1. Sign in to your Marketplace account.

  2. Open the main menu, then go to Settings > API tokens.

  3. Select Add.

  4. Complete the Add API token workflow. For detailed instructions, see Create API token.

  5. Copy the token value.

3

Make your first API request

Once you have your API token, send a request to one of the available endpoints.

All Marketplace Platform API endpoints use the following base URL:

https://api.platform.softwareone.com

The following example uses the Accounts API to retrieve a list of buyers in your account.

Send a GET request to the /public/v1/accounts/buyers endpoint:

GET https://api.platform.softwareone.com/public/v1/accounts/buyers
Authorization: Bearer {TOKEN_VALUE}
Accept: application/json
4

Review the response

If the request succeeds, the API returns a 200 OK response and a list of buyers in the response body.

If the access token is invalid, the API returns 401 Unauthorized.

If the token doesn't have permission to access the endpoint, the API returns 403 Forbidden. Note that access to this endpoint depends on the account type associated with the token, rather than the enabled modules. The token must belong to a client or ops account.

For more HTTP status codes, see Error handling.

Continue building with Marketplace Platform APIs

After successfully authenticating, you can use the same API token to access other Marketplace APIs. Choose a common integration scenario to continue building with the platform.

Looking for additional APIs or guidance? See Browse APIs and API Usage & Reference.

Last updated

Was this helpful?