Updates the revenue amount associated with a specific call log entry in the Convoso system.
Endpoint:
POST https://api.convoso.com/v1/revenue/update
🔒 Authentication
- Parameter Name: auth_token
- Type: Query Parameter
- Required: Yes
🔎 Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| auth_token | string | ✅ Yes | API token for authentication |
| call_log_id | string | ✅ Yes | Identifier for the call log to be updated. |
| revenue | double | Optional | The revenue to be attributed to the call. |
| return | integer | Optional | If set to 1, the API will return the updated call log data. Default is 0. |
Example Request
POST https://api.convoso.com/v1/revenue/search?auth_token=your_auth_token&call_log_id=123456&revenue=150.75&return=1
Response Format (JSON)
{
"success": true,
"data": {
"call_log_id": "100125"
}
}
Response Field Definitions
Top-Level Request Metadata
| Field | Type | Description |
|---|---|---|
| success | boolean | Indicates whether the API call succeeded. |
| data | object | Contains operations result. |
Data
| Field | Type | Description |
|---|---|---|
| call_log_id | string | Call Log identifier for the call log which was updated. |