GET
/
api
/
v1
/
csp
/
partner
/
{partner_id}
Find Namespace
curl --request GET \
  --url https://sandbox.paylias.xyz/gateway/api/v1/csp/partner/{partner_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "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.

Path Parameters

partner_id
string
required

The unique identifier for the partner

Example:

"part_123456789"

Response

200
application/json

Response when retrieving partner information

Standard response structure for successful operations