Developer Portal
  • Introduction
  • API Endpoint
  • Authentication
  • Errors
  • Rate Limiting
  • Pagination
  • Request IDs
  • API reference
    • Partner portals
      • Users
    • User attributes
    • Roles
    • Warehouses
      • Persistence Engine
Powered by GitBook
On this page

Was this helpful?

  1. API reference

Partner portals

PreviousAPI referenceNextUsers

Last updated 8 months ago

Was this helpful?

get
Authorizations
Query parameters
afterstringOptional
limitnumberOptional
Responses
200Success
application/json
Responseall of
and
get
GET /v1/partner-portals HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success
{
  "paging": {
    "next": {
      "after": "text"
    }
  },
  "data": [
    {
      "id": "text",
      "name": "text"
    }
  ]
}
get
Authorizations
Path parameters
portalIdstringRequired
Responses
200Success
application/json
get
GET /v1/partner-portals/{portalId} HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success
{
  "id": "text",
  "name": "text"
}
  • GET/v1/partner-portals
  • GET/v1/partner-portals/{portalId}