Create Branch

The Create Branch API allows you to add a new branch to the system. This API is typically used by administrators or authorized personnel to manage branches within the organization.

API Method

POST

Endpoint

https://cebuana-apiuat.veryfyglobal.com/branches

Headers

Key
Value

Accept

application/json

Authorization

Bearer <YOUR_TOKEN>

Body Parameters

Parameter
Type
Required
Description

name

string

Yes

The name of the branch. Maximum length: 255 characters.

address

string

Yes

The physical address of the branch. Maximum length: 255 characters.

Example Request Body

{
    "name": "Branch B",
    "address": "456 Another St, City, Country"
}

Response Sample

{
    "message": "Ok",
    "data": []
}

Last updated