The getAccount API method allows a customer to retrieve the current status of their account, including whether it's active or disabled.
Endpoint Details
Description
Data
API Name
HTTP Method
GET
URL
/v1/account
Headers
Key
Value
Content-Type
application/json
x-api-key
API_KEY
Parameters
There are no parameters required for this request.
The response will contain the details of the account status.
{
result: {
account: {
name: string, // Name of the account
isActive: boolean // true or false if inactive
}
} | error?: IResponseError // Optional error information
}
The request to this endpoint does not require any specific parameters or form-data.
The response will indicate the current status of the customer's account, whether active or disabled. If an error occurs, an IResponseError object may be included in the response.