Skip to main content

GET /v1/partners/me

GET https://api.thiqwave.com/v1/partners/me

Description

Retrieve your own partner profile. Use this endpoint to inspect your account details, check your current status.

Request

Headers

X-API-Key
string
required
Your Thiqwave API key.

Example request

curl https://api.thiqwave.com/v1/partners/me \
  -H "X-API-Key: your-api-key"

Response

id
string
Your partner ID.
name
string
Your registered business name.
email
string
Your primary contact email address.
status
string
Your account status. Possible values: "pending", "active", "suspended".
createdAt
string
The ISO 8601 timestamp of when your account was created.

Example response

{
  "id": "prtnr_01HZ2KJ8VBNC4W3M9RFQTX6YP",
  "name": "Acme Financial Services",
  "email": "admin@acmefinancial.ae",
  "status": "active",
  "createdAt": "2025-11-14T08:00:00Z"
}

GET /v1/partners

GET https://api.thiqwave.com/v1/partners

Description

List all sub-partners under your account. This endpoint is restricted to admin-level partners and returns a paginated array of sub-partner objects.

Request

Headers

X-API-Key
string
required
Your Thiqwave API key.

Query parameters

page
integer
The page number to retrieve. Defaults to 1.
limit
integer
The number of results per page. Defaults to 20. Maximum value is 100.

Example request

curl "https://api.thiqwave.com/v1/partners?page=1&limit=20" \
  -H "X-API-Key: your-api-key"

Response

The response is a paginated object containing an array of partner records and pagination metadata.
data
array
Array of partner objects.
meta
object
Pagination metadata.

Example response

{
  "data": [
    {
      "id": "prtnr_01HZ2KJ8VBNC4W3M9RFQTX6YP",
      "name": "Noon Payments LLC",
      "email": "api@noonpayments.ae",
      "status": "active",
      "createdAt": "2026-01-20T14:15:00Z"
    },
    {
      "id": "prtnr_01HZ3LK9WCOD5X4N0SGRUVY7ZQ",
      "name": "STC Pay Partners",
      "email": "platform@stcpay.com.sa",
      "status": "pending",
      "createdAt": "2026-03-05T09:45:00Z"
    }
  ],
  "meta": {
    "total": 42,
    "page": 1,
    "limit": 20
  }
}
This endpoint requires admin-level access. If your account does not have the required permissions, the API returns a 403 Forbidden response.