Skip to main content
GET
/
v1
/
partner
/
profile
Get partner profile
curl --request GET \
  --url https://sandbox.api.acountpay.com/v1/partner/profile \
  --header 'X-Partner-Client-Id: <api-key>' \
  --header 'X-Partner-Client-Secret: <api-key>'
{
  "id": 1,
  "name": "Acme POS",
  "companyName": "Acme POS ApS",
  "contactEmail": "partner@acmepos.dk",
  "contactPhone": "+4512345678",
  "website": "https://acmepos.dk",
  "registrationNumber": "12345678",
  "status": "active",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-Partner-Client-Id
string
header
required

Your partner client ID

X-Partner-Client-Secret
string
header
required

Your partner client secret

Response

Partner profile

id
number
Example:

1

name
string
Example:

"Acme POS"

companyName
string
Example:

"Acme POS ApS"

contactEmail
string
Example:

"partner@acmepos.dk"

contactPhone
string
Example:

"+4512345678"

website
string
Example:

"https://acmepos.dk"

registrationNumber
string
Example:

"12345678"

status
enum<string>
Available options:
pending,
active,
suspended
Example:

"active"

createdAt
string<date-time>
updatedAt
string<date-time>