Add Delivery Service Handler sale.delivery.handler.add
Scope:
saleWho can execute the method: CRM administrator
This method adds a delivery service handler.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
NAME* |
Name of the delivery service handler |
|
CODE* |
Symbolic code of the delivery service handler |
|
SORT |
Sorting |
|
DESCRIPTION |
Description of the delivery service handler |
|
SETTINGS* |
Object containing information about the settings of the delivery service handler (detailed description provided below) |
|
PROFILES* |
Array containing a list of delivery profile objects (detailed description provided below). It is implied that the delivery service handler must have at least 1 profile |
SETTINGS Parameter
Required parameters are marked with *
|
Name |
Description |
|
CALCULATE_URL* |
URL for calculating delivery cost. Data about the shipment (what to deliver, where, and how) is sent to this URL, for which the delivery cost needs to be calculated in the response. The request and response format is detailed in the documentation for the webhook Calculate Delivery Cost |
|
CREATE_DELIVERY_REQUEST_URL |
URL for creating a delivery order. Data about the shipment (what to deliver, where, and how) is sent to this URL, for which an order needs to be placed with the delivery service. The request and response format is detailed in the documentation for the webhook Create Delivery Order |
|
CANCEL_DELIVERY_REQUEST_URL |
URL for canceling a delivery order. Data about the shipment (what to deliver, where, and how) is sent to this URL, for which the order needs to be canceled with the delivery service. The request and response format is detailed in the documentation for the webhook Cancel Delivery Order |
|
HAS_CALLBACK_TRACKING_SUPPORT |
Indicator of whether the delivery service will send notifications about the status of the delivery order (see method If event support is indicated, a delivery activity will be created in the manager's interface when ordering delivery, into which changes related to the current delivery status can be transmitted. Possible values:
|
|
CONFIG |
Array of objects with available settings for the delivery service created using this handler (detailed description provided below) |
CONFIG Parameter
Required parameters are marked with *
|
Name |
Description |
|
TYPE* |
Type of the setting field
|
|
CODE* |
Symbolic code of the setting |
|
NAME* |
Name of the setting |
|
OPTIONS |
List of options for selection. Object in the format Example:
This parameter is relevant only for settings of type |
PROFILES Parameter
Required parameters are marked with *
|
Name |
Description |
|
NAME* |
Name of the delivery service handler profile |
|
CODE* |
Symbolic code of the delivery service handler profile |
|
DESCRIPTION |
Description of the delivery service handler profile |
Code Examples
How to Use Examples in Documentation
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"CODE":"uber","NAME":"Uber","DESCRIPTION":"Uber Description","SORT":250,"SETTINGS":{"CALCULATE_URL":"http://gateway.bx/calculate.php","CREATE_DELIVERY_REQUEST_URL":"http://gateway.bx/create_delivery_request.php","CANCEL_DELIVERY_REQUEST_URL":"http://gateway.bx/cancel_delivery_request.php","HAS_CALLBACK_TRACKING_SUPPORT":"Y","CONFIG":[{"TYPE":"STRING","CODE":"SETTING_1","NAME":"String Example"},{"TYPE":"Y/N","CODE":"SETTING_2","NAME":"Checkbox Example"},{"TYPE":"NUMBER","CODE":"SETTING_3","NAME":"Number Example"},{"TYPE":"ENUM","CODE":"SETTING_4","NAME":"Enum Example","OPTIONS":{"Option1Code":"Option1Value","Option2Code":"Option2Value","Option3Code":"Option3Value","Option4Code":"Option4Value","Option5Code":"Option5Value"}},{"TYPE":"DATE","CODE":"SETTING_5","NAME":"Date Example"},{"TYPE":"LOCATION","CODE":"SETTING_6","NAME":"Location Example"}]},"PROFILES":[{"NAME":"Taxi","CODE":"TAXI","DESCRIPTION":"Taxi Delivery"},{"NAME":"Cargo","CODE":"CARGO","DESCRIPTION":"Cargo Delivery"}]}' \
https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/sale.delivery.handler.add
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"CODE":"uber","NAME":"Uber","DESCRIPTION":"Uber Description","SORT":250,"SETTINGS":{"CALCULATE_URL":"http://gateway.bx/calculate.php","CREATE_DELIVERY_REQUEST_URL":"http://gateway.bx/create_delivery_request.php","CANCEL_DELIVERY_REQUEST_URL":"http://gateway.bx/cancel_delivery_request.php","HAS_CALLBACK_TRACKING_SUPPORT":"Y","CONFIG":[{"TYPE":"STRING","CODE":"SETTING_1","NAME":"String Example"},{"TYPE":"Y/N","CODE":"SETTING_2","NAME":"Checkbox Example"},{"TYPE":"NUMBER","CODE":"SETTING_3","NAME":"Number Example"},{"TYPE":"ENUM","CODE":"SETTING_4","NAME":"Enum Example","OPTIONS":{"Option1Code":"Option1Value","Option2Code":"Option2Value","Option3Code":"Option3Value","Option4Code":"Option4Value","Option5Code":"Option5Value"}},{"TYPE":"DATE","CODE":"SETTING_5","NAME":"Date Example"},{"TYPE":"LOCATION","CODE":"SETTING_6","NAME":"Location Example"}]},"PROFILES":[{"NAME":"Taxi","CODE":"TAXI","DESCRIPTION":"Taxi Delivery"},{"NAME":"Cargo","CODE":"CARGO","DESCRIPTION":"Cargo Delivery"}],"auth":"**put_access_token_here**"}' \
https://**put_your_bitrix24_address**/rest/sale.delivery.handler.add
try
{
const response = await $b24.callMethod(
'sale.delivery.handler.add', {
CODE: "uber",
NAME: "Uber",
DESCRIPTION: "Uber Description",
SORT: 250,
SETTINGS: {
CALCULATE_URL: "http://gateway.bx/calculate.php",
CREATE_DELIVERY_REQUEST_URL: "http://gateway.bx/create_delivery_request.php",
CANCEL_DELIVERY_REQUEST_URL: "http://gateway.bx/cancel_delivery_request.php",
HAS_CALLBACK_TRACKING_SUPPORT: "Y",
CONFIG: [{
TYPE: "STRING",
CODE: "SETTING_1",
NAME: "String Example",
},
{
TYPE: "Y/N",
CODE: "SETTING_2",
NAME: "Checkbox Example",
},
{
TYPE: "NUMBER",
CODE: "SETTING_3",
NAME: "Number Example",
},
{
TYPE: "ENUM",
CODE: "SETTING_4",
NAME: "Enum Example",
OPTIONS: {
"Option1Code": "Option1Value",
"Option2Code": "Option2Value",
"Option3Code": "Option3Value",
"Option4Code": "Option4Value",
"Option5Code": "Option5Value",
},
},
{
TYPE: "DATE",
CODE: "SETTING_5",
NAME: "Date Example",
},
{
TYPE: "LOCATION",
CODE: "SETTING_6",
NAME: "Location Example",
},
],
},
PROFILES: [{
NAME: "Taxi",
CODE: "TAXI",
DESCRIPTION: "Taxi Delivery",
},
{
NAME: "Cargo",
CODE: "CARGO",
DESCRIPTION: "Cargo Delivery",
},
],
}
);
const result = response.getData().result;
console.info(result);
}
catch( error )
{
console.error(error);
}
try {
$response = $b24Service
->core
->call(
'sale.delivery.handler.add',
[
'CODE' => "uber",
'NAME' => "Uber",
'DESCRIPTION' => "Uber Description",
'SORT' => 250,
'SETTINGS' => [
'CALCULATE_URL' => "http://gateway.bx/calculate.php",
'CREATE_DELIVERY_REQUEST_URL' => "http://gateway.bx/create_delivery_request.php",
'CANCEL_DELIVERY_REQUEST_URL' => "http://gateway.bx/cancel_delivery_request.php",
'HAS_CALLBACK_TRACKING_SUPPORT' => "Y",
'CONFIG' => [
[
'TYPE' => "STRING",
'CODE' => "SETTING_1",
'NAME' => "String Example",
],
[
'TYPE' => "Y/N",
'CODE' => "SETTING_2",
'NAME' => "Checkbox Example",
],
[
'TYPE' => "NUMBER",
'CODE' => "SETTING_3",
'NAME' => "Number Example",
],
[
'TYPE' => "ENUM",
'CODE' => "SETTING_4",
'NAME' => "Enum Example",
'OPTIONS' => [
"Option1Code" => "Option1Value",
"Option2Code" => "Option2Value",
"Option3Code" => "Option3Value",
"Option4Code" => "Option4Value",
"Option5Code" => "Option5Value",
],
],
[
'TYPE' => "DATE",
'CODE' => "SETTING_5",
'NAME' => "Date Example",
],
[
'TYPE' => "LOCATION",
'CODE' => "SETTING_6",
'NAME' => "Location Example",
],
],
],
'PROFILES' => [
[
'NAME' => "Taxi",
'CODE' => "TAXI",
'DESCRIPTION' => "Taxi Delivery",
],
[
'NAME' => "Cargo",
'CODE' => "CARGO",
'DESCRIPTION' => "Cargo Delivery",
],
],
]
);
$result = $response
->getResponseData()
->getResult();
echo 'Success: ' . print_r($result, true);
} catch (Throwable $e) {
error_log($e->getMessage());
echo 'Error adding delivery handler: ' . $e->getMessage();
}
BX24.callMethod(
'sale.delivery.handler.add', {
CODE: "uber",
NAME: "Uber",
DESCRIPTION: "Uber Description",
SORT: 250,
SETTINGS: {
CALCULATE_URL: "http://gateway.bx/calculate.php",
CREATE_DELIVERY_REQUEST_URL: "http://gateway.bx/create_delivery_request.php",
CANCEL_DELIVERY_REQUEST_URL: "http://gateway.bx/cancel_delivery_request.php",
HAS_CALLBACK_TRACKING_SUPPORT: "Y",
CONFIG: [{
TYPE: "STRING",
CODE: "SETTING_1",
NAME: "String Example",
},
{
TYPE: "Y/N",
CODE: "SETTING_2",
NAME: "Checkbox Example",
},
{
TYPE: "NUMBER",
CODE: "SETTING_3",
NAME: "Number Example",
},
{
TYPE: "ENUM",
CODE: "SETTING_4",
NAME: "Enum Example",
OPTIONS: {
"Option1Code": "Option1Value",
"Option2Code": "Option2Value",
"Option3Code": "Option3Value",
"Option4Code": "Option4Value",
"Option5Code": "Option5Value",
},
},
{
TYPE: "DATE",
CODE: "SETTING_5",
NAME: "Date Example",
},
{
TYPE: "LOCATION",
CODE: "SETTING_6",
NAME: "Location Example",
},
],
},
PROFILES: [{
NAME: "Taxi",
CODE: "TAXI",
DESCRIPTION: "Taxi Delivery",
},
{
NAME: "Cargo",
CODE: "CARGO",
DESCRIPTION: "Cargo Delivery",
},
],
},
function(result) {
if (result.error()) {
console.error(result.error());
} else {
console.info(result.data());
}
}
);
require_once('crest.php');
$result = CRest::call(
'sale.delivery.handler.add',
[
'CODE' => "uber",
'NAME' => "Uber",
'DESCRIPTION' => "Uber Description",
'SORT' => 250,
'SETTINGS' => [
'CALCULATE_URL' => "http://gateway.bx/calculate.php",
'CREATE_DELIVERY_REQUEST_URL' => "http://gateway.bx/create_delivery_request.php",
'CANCEL_DELIVERY_REQUEST_URL' => "http://gateway.bx/cancel_delivery_request.php",
'HAS_CALLBACK_TRACKING_SUPPORT' => "Y",
'CONFIG' => [
['TYPE' => "STRING", 'CODE' => "SETTING_1", 'NAME' => "String Example"],
['TYPE' => "Y/N", 'CODE' => "SETTING_2", 'NAME' => "Checkbox Example"],
['TYPE' => "NUMBER", 'CODE' => "SETTING_3", 'NAME' => "Number Example"],
[
'TYPE' => "ENUM",
'CODE' => "SETTING_4",
'NAME' => "Enum Example",
'OPTIONS' => [
"Option1Code" => "Option1Value",
"Option2Code" => "Option2Value",
"Option3Code" => "Option3Value",
"Option4Code" => "Option4Value",
"Option5Code" => "Option5Value",
],
],
['TYPE' => "DATE", 'CODE' => "SETTING_5", 'NAME' => "Date Example"],
['TYPE' => "LOCATION", 'CODE' => "SETTING_6", 'NAME' => "Location Example"],
],
],
'PROFILES' => [
['NAME' => "Taxi", 'CODE' => "TAXI", 'DESCRIPTION' => "Taxi Delivery"],
['NAME' => "Cargo", 'CODE' => "CARGO", 'DESCRIPTION' => "Cargo Delivery"],
],
]
);
echo '<PRE>';
print_r($result);
echo '</PRE>';
Successful Response
HTTP status: 200
{
"result":14,
"time":{
"start":1713872092.378366,
"finish":1713872092.691408,
"duration":0.31304192543029785,
"processing":0.015096187591552734,
"date_start":"2024-04-23T14:34:52+02:00",
"date_finish":"2024-04-23T14:34:52+02:00"
}
}
Returned Data
|
Name |
Description |
|
result |
Identifier of the delivery service handler |
|
time |
Information about the execution time of the request |
Error Handling
HTTP status: 400, 403
{
"error":"ERROR_CHECK_FAILURE",
"error_description":"Parameter CODE is not defined"
}
|
Name |
Description |
|
error |
String error code. It may consist of digits, Latin letters, and underscores |
|
error_description |
Textual description of the error. The description is not intended to be shown to the end user in its raw form |
Possible Error Codes
|
Code |
Description |
Status |
|
|
Validation error of incoming parameters (details in the error description) |
400 |
|
|
Error when trying to add a delivery service handler |
400 |
|
|
A delivery service handler with the specified code |
400 |
|
|
Insufficient rights to add a delivery service handler |
403 |
Statuses and System Error Codes
HTTP Status: 20x, 40x, 50x
The errors described below may occur when calling any method.
|
Status |
Code |
Description |
|
|
|
An internal server error has occurred, please contact the server administrator or Bitrix24 technical support |
|
|
|
An internal server error has occurred, please contact the server administrator or Bitrix24 technical support |
|
|
|
The request intensity limit has been exceeded |
|
|
|
The current method is not allowed to be called using batch |
|
|
|
The maximum length of parameters passed to the batch method has been exceeded |
|
|
|
Invalid access token or webhook code |
|
|
|
The methods must be called using the HTTPS protocol |
|
|
|
The REST API is blocked due to overload. This is a manual individual block, to remove it you need to contact Bitrix24 technical support |
|
|
|
The REST API is available only on commercial plans |
|
|
|
The user whose access token or webhook was used to call the method lacks permissions |
|
|
|
The manifest is not available |
|
|
|
The request requires higher privileges than those provided by the webhook token |
|
|
|
The provided access token has expired |
|
|
|
The user does not have access to the application. This means that the application is installed, but the account administrator has allowed access to this application only for specific users |
|
|
|
The public part of the site is closed. To open the public part of the site on an on-premise installation, disable the option "Temporary closure of the public part of the site". Path to the setting: Desktop > Settings > Product Settings > Module Settings > Main Module > Temporary closure of the public part of the site |
Continue Learning
- Update Delivery Service Handler sale.delivery.handler.update
- Delete Delivery Service Handler sale.delivery.handler.delete
- Get a list of delivery service handlers sale.delivery.handler.list
- Set Up Delivery Service for CRM