- Backhub Api
- General
- Accounting
- Apps
- Settings
- Definitions
- Branches
- 🥷 Enterprise
Create
Designing
POST
/branches
Last modified:2024-10-25 18:25:40
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/json
name
string
required
code
string
required
variables
object (generalVariables)
optional
key
string
required
value
string | integer | boolean | array | object | number | null
required
Example
{
"name": "string",
"code": "string",
"variables": {
"key": "string",
"value": "string"
}
}
Responses
🟢200Success
application/json
Body
result
array[string]
required
Example
{
"result": [
"string"
]
}
Modified at 2024-10-25 18:25:40