Get One Branch

The Get One Branch API retrieves detailed information about a specific branch identified by its unique ID.

API Method

GET

Endpoint

https://cebuana-apiuat.veryfyglobal.com/branches/{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 branch to retrieve. Branch ID

Response Sample

{
    "message": "Ok",
    "data": {
        "id": 1,
        "name": "Branch 1",
        "address": "Pedro Gil Mabini",
        "is_active": {
            "value": 1,
            "description": "Yes"
        },
        "is_suspend": {
            "value": 0,
            "description": "No"
        },
        "sell_enabled": {
            "value": 0,
            "description": "No"
        }
    }
}

Last updated