Import, disable, enable, or delete branches
curl --request POST \
--url https://my.propops.app/api/admin/branches \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form csrf_token=abc123def456 \
--form csv_file='@example-file' \
--form 'branch_ids[0]=1' \
--form 'branch_ids[1]=2' \
--form 'branch_ids[2]=3'{
"success": true,
"message": "Operation completed successfully"
}Branches
Import, disable, enable, or delete branches
Manage branches in bulk:
bulk_import— Import branches from CSV filebulk_disable— Disable multiple branchesbulk_delete— Delete multiple branchesbulk_assign_logo— Assign logos to branches
Required permission: api.admin.branches.view (staff only)
POST
/
api
/
admin
/
branches
Import, disable, enable, or delete branches
curl --request POST \
--url https://my.propops.app/api/admin/branches \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form csrf_token=abc123def456 \
--form csv_file='@example-file' \
--form 'branch_ids[0]=1' \
--form 'branch_ids[1]=2' \
--form 'branch_ids[2]=3'{
"success": true,
"message": "Operation completed successfully"
}Documentation Index
Fetch the complete documentation index at: https://help.propops.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
All API requests must include a valid Bearer token in the Authorization header.
Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.
Example:
Authorization: Bearer a1b2c3d4e5f6...Body
multipart/form-data
⌘I