- GatewayPay API Documentation
- Authentication
- Callbacks
- Testing
- Domains and IP Addresses
- Account
- H2H flow
- Refunds
- Cards Whitelist API
- APM - Deposits
- APM - Payouts
Get Account profile details
GET
/account/profile
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic *****************
Header Params
Host
string
required
Example:
{{BASE_API_URL}}
Responses
🟢200Get Account details
application/json
Body
data
object
required
type
string
required
id
string
required
attributes
object
required
links
object
required
Example
{
"data": {
"type": "account",
"id": "coma_xfepg37ujsU7aK6f",
"attributes": {
"status": "active",
"name": "Default",
"icon": null,
"website": null,
"payment_fee_shift_out": false,
"hp_domain": "https://checkout.example.com",
"ledger_scheme": "none",
"api_ip_white_list": [],
"created": 1702354478,
"updated": 1727090281,
"report": false,
"time_zone": "Europe/Spain"
},
"links": {
"self": "/api/account/profile"
}
}
}
Modified at 2024-10-09 12:45:55