URL Structure
Learn how to map between Portal URLs and API endpoints for Marketplace Platform objects.
The Marketplace Platform provides two main entry points for interacting with your data:
Portal (Web UI):
https://portal.platform.softwareone.com/API:
https://api.platform.softwareone.com/public/v1/
While both the Portal and API operate on the same underlying objects, their URL structures differ slightly due to usability requirements. This article explains how to map between Portal URLs and API endpoints, which is useful when you need to:
Generate deep links to specific objects in the Portal
Determine which API endpoint to call based on a Portal URL
Build integrations that navigate between UI and API resources
Enable LLM agents to translate between human-readable links and API calls
Object ID prefixes
Every object in the Marketplace Platform has a unique identifier with a prefix that indicates the object type. Use these prefixes to quickly identify what kind of object you are working with:
Accounts
ACC-
Account
ACC-1234-5678
BUY-
Buyer
BUY-5171-6994
SEL-
Seller
SEL-6685-4945
LCE-
Licensee
LCE-8499-1473-5603
USR-
User
USR-3758-7092
UGR-
User Group
UGR-0601-5102
TKN-
API Token
TKN-9299-7556
Commerce
AGR-
Agreement
AGR-8784-9237-0931
AST-
Asset
AST-3258-2228-4345
ORD-
Order
ORD-8108-0372-6265
SUB-
Subscription
SUB-9892-4074-5613
REQ-
Request
REQ-5375-9599
Billing
SOM-
Statement
SOM-6005-1054-1535-5364
INV-
Invoice
INV-2078-0901-9457-5058
CRD-
Credit Memo
CRD-8280-7533-0235-8348
Catalog
PRD-
Product
PRD-4471-6929
ITM-
Item
ITM-3386-3348-1368
LST-
Listing
LST-7264-0230
AUT-
Authorization
AUT-6222-9718
PRC-
Price List
PRC-3386-3348-0003
Program
PRG-
Program
PRG-0742-8320
CER-
Certificate
CER-1104-3765-0381
ENR-
Enrollment
ENR-9988-8127-1981
Notifications
WBH-
Webhook
WBH-0700-8876
URL mapping reference
The following tables show how Portal URLs map to API endpoints for each category of objects.
Accounts objects
Buyers List
/administration/settings/buyers
GET /accounts/buyers
Buyer Details
/administration/settings/buyers/{id}
GET /accounts/buyers/{id}
Sellers List
/administration/settings/sellers
GET /accounts/sellers
Seller Details
/administration/settings/sellers/{id}
GET /accounts/sellers/{id}
Licensees List
/administration/settings/licensees
GET /accounts/licensees
Licensee Details
/administration/settings/licensees/{id}
GET /accounts/licensees/{id}
Users List
/administration/settings/users
GET /accounts/users
User Details
/administration/settings/users/{id}
GET /accounts/users/{id}
User Groups List
/administration/settings/groups
GET /accounts/user-groups
User Group Details
/administration/settings/groups/{id}
GET /accounts/user-groups/{id}
API Tokens List
/administration/settings/api-tokens
GET /accounts/api-tokens
API Token Details
/administration/settings/api-tokens/{id}
GET /accounts/api-tokens/{id}
All accounts-related objects in the Portal are accessed via the /administration/settings/ path. The Portal uses groups while the API uses user-groups.
Commerce objects
Agreements List
/commerce/agreements
GET /commerce/agreements
Agreement Details
/commerce/agreements/{id}
GET /commerce/agreements/{id}
Assets List
/commerce/assets
GET /commerce/assets
Asset Details
/commerce/assets/{id}
GET /commerce/assets/{id}
Entitlements List
/commerce/entitlements
GET /commerce/lines
Entitlement Details
/catalog/items/{id}
GET /catalog/items/{id}
Orders List
/commerce/orders
GET /commerce/orders
Order Details
/commerce/orders/{id}
GET /commerce/orders/{id}
Subscriptions List
/commerce/subscriptions
GET /commerce/subscriptions
Subscription Details
/commerce/subscriptions/{id}
GET /commerce/subscriptions/{id}
Requests List
/commerce/requests
GET /commerce/requests
Request Details
/commerce/requests/{id}
GET /commerce/requests/{id}
The Entitlements page in the Portal shows commerce lines, and clicking on an entitlement opens the catalog item details page.
Billing objects
Statements List
/billing/statements
GET /billing/statements
Statement Details
/billing/statements/{id}
GET /billing/statements/{id}
Invoices List
/billing/invoices
GET /billing/invoices
Invoice Details
/billing/invoices/{id}
GET /billing/invoices/{id}
Credit Memos List
/billing/credit-memos
GET /billing/credit-memos
Credit Memo Details
/billing/credit-memos/{id}
GET /billing/credit-memos/{id}
Catalog objects
Products List
/catalog/products
GET /catalog/products
Product Details
/catalog/products/{id}
GET /catalog/products/{id}
Items List
/catalog/items
GET /catalog/items
Item Details
/catalog/items/{id}
GET /catalog/items/{id}
Price Lists
/catalog/price-lists
GET /catalog/price-lists
Price List Details
/catalog/price-lists/{id}
GET /catalog/price-lists/{id}
Listings
API only
GET /catalog/listings
Listing Details
API only
GET /catalog/listings/{id}
Authorizations
API only
GET /catalog/authorizations
Authorization Details
API only
GET /catalog/authorizations/{id}
Listings and Authorizations are available through the API but do not have dedicated Portal pages. They are typically accessed programmatically for integration purposes.
Program objects
Programs List
/program/programs
GET /program/programs
Program Details
/program/programs/{id}
GET /program/programs/{id}
Certificates List
/program/certificates
GET /program/certificates
Certificate Details
/program/certificates/{id}
GET /program/certificates/{id}
Enrollments List
/program/enrollments
GET /program/enrollments
Enrollment Details
/program/enrollments/{id}
GET /program/enrollments/{id}
Notifications objects (API only)
The notifications module is primarily accessed through the API for webhook management and programmatic notification handling.
Webhooks
API only
GET /notifications/webhooks
Webhook Details
API only
GET /notifications/webhooks/{id}
Messages
API only
GET /notifications/messages
Message Details
API only
GET /notifications/messages/{id}
Contacts
API only
GET /notifications/contacts
Subscribers
API only
GET /notifications/subscribers
URL patterns
Portal URL pattern
Where:
{module}is one of:administration/settings,commerce,billing,catalog,program{resource}is the plural resource name (for example,agreements,orders,invoices){id}is the object identifier (optional, only for detail pages)
API URL pattern
The API follows the same structure, with /public/v1/ added after the base domain.
Module mapping between Portal and API
administration/settings
accounts
Buyers, Sellers, Licensees, Users, Groups, API Tokens
commerce
commerce
Direct mapping
billing
billing
Direct mapping
catalog
catalog
Direct mapping
program
program
Direct mapping
N/A
notifications
API only
N/A
audit
API only
N/A
spotlight
API only
Usage examples
Generating a Portal link from an API response
When you retrieve an object from the API, you can construct a Portal link using the object's id:
Determining the API endpoint from a Portal URL
When you have a Portal URL and need to call the corresponding API:
Extracting the object type from an ID
You can determine the object type from the ID prefix:
Notes for LLM agents
When working with Marketplace Platform URLs, follow these guidelines:
Use the correct Portal URL: Always use
https://portal.platform.softwareone.com/for Portal links. The legacy URLhttps://portal.softwareone.com/is kept for backwards compatibility only and should not be used for new requests. Always route new links toportal.platform.softwareone.com.ID Recognition: Object IDs always follow the pattern
{PREFIX}-{segments}where the prefix is 3 letters (for example,AGR,ORD,SUB). Extract the prefix to determine the object type.URL Translation: To convert a Portal URL to an API endpoint:
Replace
portal.platform.softwareone.comwithapi.platform.softwareone.com/public/v1Keep the path unchanged (for example,
/commerce/orders/{id})
API to Portal: To convert an API endpoint to a Portal URL:
Replace
api.platform.softwareone.com/public/v1withportal.platform.softwareone.comKeep the path unchanged
Special Cases:
The Portal home page (
/home) has no API equivalentEntitlement details pages redirect to
/catalog/items/{id}Portal uses
/administration/settings/groupsbut API uses/accounts/user-groupsAll accounts-related objects are under
/administration/settings/in Portal but/accounts/in APIThe API requires authentication via Bearer token
Module Detection: The first path segment after the base URL indicates the module:
Portal
administration/settings= APIaccounts(Buyers, Sellers, Licensees, Users, User Groups, API Tokens)commerce= Agreements, Assets, Orders, Subscriptions, Requests, Entitlementsbilling= Statements, Invoices, Credit Memoscatalog= Products, Items, Price Lists, Listings, Authorizationsprogram= Programs, Certificates, Enrollmentsnotifications= Webhooks, Messages, Contacts, Subscribers (API only)
API-Only Resources: Some resources are only accessible via API and have no Portal equivalent:
Listings (
LST-)Authorizations (
AUT-)Webhooks (
WBH-)Notification Messages, Contacts, Subscribers
Legacy URL Handling: If you encounter URLs using
portal.softwareone.com, rewrite them to useportal.platform.softwareone.combefore processing or generating links.
Related topics
REST APIResource Query LanguageLast updated
Was this helpful?