Get One Account

The Get One Account API allows users to retrieve detailed information about a specific account using its unique identifier.

API Method

GET

Endpoint

https://cebuana-apiuat.veryfyglobal.com/accounts/{id}

Headers

Key
Value

Accept

application/json

Authorization

Bearer <YOUR_TOKEN>

Path Parameters

Parameter
Type
Required
Description

id

integer

Yes

The unique identifier of the account to retrieve. account_id

Example Request

Request URL

GET /accounts/1

Response Sample

{
    "message": "Ok",
    "data": {
        "id": 1,
        "role": {
            "value": 0,
            "description": "Super Admin"
        },
        "branch": null,
        "employee_id": null,
        "name": "John Doe",
        "email": "[email protected]",
        "is_active": {
            "value": 1,
            "description": "Yes"
        },
        "is_suspend": {
            "value": 0,
            "description": "No"
        }
    }
}

Last updated