GET
/
api
/
v1
/
csp
/
partner
Search Namespaces
curl --request GET \
  --url https://sandbox.paylias.xyz/gateway/api/v1/csp/partner \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "count": 1,
    "partners": [
      {
        "created_at": {
          "seconds": 1635784800
        },
        "domain": "example-partner.com",
        "name": "Example Partner",
        "org_id": "org_12345abcde",
        "token": "partner_67890fghij",
        "updated_at": {
          "seconds": 1635788400
        }
      }
    ]
  },
  "ok": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

enabled
boolean

Filter for only enabled or disabled namespaces

Example:

true

limit
string

The number of reords to return in the response

Example:

"10"

page
string

The offset page number

Example:

"1"

Response

200
application/json

Response containing list of partners

Standard response structure for successful operations