Borza API providing various endpoints for tasks management
Borza API (1.0)
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/submissions/{submission_id}
- Production serverhttps://api.borza.com/v1/submissions/{submission_id}
- Testing serverhttps://api-testing.borza.com/v1/submissions/{submission_id}
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
submission_id = "YOUR_submission_id_PARAMETER"
url = "https://docs.borza.com/_mock/openapi/v1/submissions/" + submission_id
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)Successful Response
The record creation timestamp
The record creation timestamp
The name of the submission
The name of the submission
The person assigned to the task
The ID of the task
The ID of the task
Additional notes about the submission
Additional notes about the submission
Current status of the submission
Current status of the submission
Category of the task
Category of the task
Code indicating the completion status
Code indicating the completion status
Indicates whether the task has an additional bonus applied.
Indicates whether the task has an additional bonus applied.
{ "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "name": "", "participant": { "id": "recXXXXXXXXXXXXXX", "email": "", "name": "" }, "task_id": "", "notes": "", "status": "Awaiting Review", "category": "", "completion_code": "", "apply_bonus": false, "bonus_amount": 0 }
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/submissions/task/{task_id}
- Production serverhttps://api.borza.com/v1/submissions/task/{task_id}
- Testing serverhttps://api-testing.borza.com/v1/submissions/task/{task_id}
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
task_id = "YOUR_task_id_PARAMETER"
url = "https://docs.borza.com/_mock/openapi/v1/submissions/task/" + task_id
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)Successful Response
The record creation timestamp
The record creation timestamp
The name of the submission
The name of the submission
The person assigned to the task
The ID of the task
The ID of the task
Additional notes about the submission
Additional notes about the submission
Current status of the submission
Current status of the submission
Category of the task
Category of the task
Code indicating the completion status
Code indicating the completion status
Indicates whether the task has an additional bonus applied.
Indicates whether the task has an additional bonus applied.
Specifies the total bonus amount in currency format.
Specifies the total bonus amount in currency format.
[ { "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "name": "", "participant": { … }, "task_id": "", "notes": "", "status": "Awaiting Review", "category": "", "completion_code": "", "apply_bonus": false, "bonus_amount": 0 } ]
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/submissions/{submission_id}/approve
- Production serverhttps://api.borza.com/v1/submissions/{submission_id}/approve
- Testing serverhttps://api-testing.borza.com/v1/submissions/{submission_id}/approve
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
submission_id = "YOUR_submission_id_PARAMETER"
url = "https://docs.borza.com/_mock/openapi/v1/submissions/" + submission_id + "/approve"
query = {
"bonus_amount": "0"
}
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.post(url, headers=headers, params=query)
data = response.json()
print(data)Successful Response
The record creation timestamp
The record creation timestamp
The name of the submission
The name of the submission
The person assigned to the task
The ID of the task
The ID of the task
Additional notes about the submission
Additional notes about the submission
Current status of the submission
Current status of the submission
Category of the task
Category of the task
Code indicating the completion status
Code indicating the completion status
Indicates whether the task has an additional bonus applied.
Indicates whether the task has an additional bonus applied.
{ "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "name": "", "participant": { "id": "recXXXXXXXXXXXXXX", "email": "", "name": "" }, "task_id": "", "notes": "", "status": "Awaiting Review", "category": "", "completion_code": "", "apply_bonus": false, "bonus_amount": 0 }
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/submissions/{submission_id}/reject
- Production serverhttps://api.borza.com/v1/submissions/{submission_id}/reject
- Testing serverhttps://api-testing.borza.com/v1/submissions/{submission_id}/reject
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
submission_id = "YOUR_submission_id_PARAMETER"
url = "https://docs.borza.com/_mock/openapi/v1/submissions/" + submission_id + "/reject"
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.post(url, headers=headers)
data = response.json()
print(data)Successful Response
The record creation timestamp
The record creation timestamp
The name of the submission
The name of the submission
The person assigned to the task
The ID of the task
The ID of the task
Additional notes about the submission
Additional notes about the submission
Current status of the submission
Current status of the submission
Category of the task
Category of the task
Code indicating the completion status
Code indicating the completion status
Indicates whether the task has an additional bonus applied.
Indicates whether the task has an additional bonus applied.
{ "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "name": "", "participant": { "id": "recXXXXXXXXXXXXXX", "email": "", "name": "" }, "task_id": "", "notes": "", "status": "Awaiting Review", "category": "", "completion_code": "", "apply_bonus": false, "bonus_amount": 0 }
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/submissions/{submission_id}/await-review
- Production serverhttps://api.borza.com/v1/submissions/{submission_id}/await-review
- Testing serverhttps://api-testing.borza.com/v1/submissions/{submission_id}/await-review
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
submission_id = "YOUR_submission_id_PARAMETER"
url = "https://docs.borza.com/_mock/openapi/v1/submissions/" + submission_id + "/await-review"
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.post(url, headers=headers)
data = response.json()
print(data)Successful Response
The record creation timestamp
The record creation timestamp
The name of the submission
The name of the submission
The person assigned to the task
The ID of the task
The ID of the task
Additional notes about the submission
Additional notes about the submission
Current status of the submission
Current status of the submission
Category of the task
Category of the task
Code indicating the completion status
Code indicating the completion status
Indicates whether the task has an additional bonus applied.
Indicates whether the task has an additional bonus applied.
{ "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "name": "", "participant": { "id": "recXXXXXXXXXXXXXX", "email": "", "name": "" }, "task_id": "", "notes": "", "status": "Awaiting Review", "category": "", "completion_code": "", "apply_bonus": false, "bonus_amount": 0 }