Skip to main content
GET
/
v1
/
account
Get account info
curl --request GET \
  --url https://api.adullam.dev/v1/account \
  --header 'Authorization: Bearer <token>'
{
  "partner_id": "partner_abc123",
  "business_name": "My Store",
  "phone": "+22507123456",
  "email": "[email protected]",
  "status": "active",
  "created_at": "2024-01-01T00:00:00Z"
}

Get Account Info

The Get Account Info API allows you to retrieve detailed information about your Adullam account, including account ID, Business name, contact details, Email and account status.

Authorizations

Authorization
string
header
required

Use the access token obtained from /v1/auth/token

Response

Account information

partner_id
string
Example:

"partner_abc123"

business_name
string
Example:

"My Store"

phone
string
Example:

"+22507123456"

email
string
status
enum<string>
Available options:
active,
inactive,
suspended,
pending_verification
Example:

"active"

created_at
string<date-time>
Example:

"2024-01-01T00:00:00Z"