Update Hook
PATCH
/hooks/{hook_id}
Update an existing driver chat message.
Roles
Users with the following roles may access this endoint:
Admin
Dispatcher
Breaking Changes
No breaking changes.
Request
- Sample Request
- Sample Response
PATCH /hooks/{hook_id}/
Authorization: Bearer {your-auth-token}
Content-Type: application/json
x-tenant-id: {your-tenant-id}
{
"events": [],
"secret": "VGhlIGxhenkgYnJvd24gZG9n",
"url": "https://test.updated.url"
}
Access-Control-Allow-Headers: Authorization, Accept, X-TENANT-ID, Content-Type
Access-Control-Allow-Methods: GET,PATCH,DELETE
Access-Control-Allow-Origin: *
Allow: GET,PATCH,DELETE
Content-Length: 167
Content-Type: application/json
Date: Sat, 20 Aug 2022 01:45:52 GMT
Server: WSGIServer/0.2 CPython/3.9.5
X-API-VERSION: 2019/02/08
X-REQUEST-ID: 7ac904d0-6334-4a06-b2e4-87bf786992a4
{
"deleted_at": null,
"events": [],
"id": 1,
"last_http_fail": null,
"last_http_success": null,
"secret": "VGhlIGxhenkgYnJvd24gZG9n",
"url": "https://test.updated.url"
}
Path Parameters
hook_id
Integer, Required
Webhook identifier.
Query Parameters
No query parameters.
Request Headers
Refer to StandardRequestHeadersModel for more details.
authorization
String, Required
Authorization header (bearer with access token). See the Authentication Guide to get started.
- Matches ^bearer [a-z0-9-_=]+.[a-z0-9-_=]+.?[a-z0-9-_.+/=]*$
- No longer than 256 characters.
- At least 1 characters long.
Content-Type
String, Optional
Default Value: application/json
One of the following MIME types:
- "application/json" Refer to the JSON Spec.
x-api-version
String, Optional
Request identifier.
- At least 1 and no more than 64 characters.
- Must be a valid API version string (2019/02/08, 2021/04/07, 2021/05/07, 2021/08/02, 2021/11/04, 2023/04/19).
x-tenant-id
Integer, Required
Tenant identifier. Contact CRO Software for more info if you don't already have this id. See list tenant ids for info on listing the tenants you have access to.
Request Body
Refer to UpdateWebhookModel for more details.
events
Array[hook_event], Optional
hook_event
String
Hook event.
- Must be a valid hook event (one of: Ping, Customer, CustomerLocation, Job, Truck).
secret
String, Optional
Response body HMAC signing key.
- Matches ^\s[a-zA-Z0-9\/+=]{11,270}\s$
- Base64 encoded string.
url
String, Required
Callback URL.
- URL conforming to RFC 1738.
Response
Response Headers
Refer to StandardResponseHeadersModel for more details.
Content-Type
String, Optional
Default Value: application/json
One of the following MIME types:
- "application/json" Refer to the JSON Spec.
x-api-version
String
Request identifier.
- At least 1 and no more than 64 characters.
- Must be a valid API version string (2019/02/08, 2021/04/07, 2021/05/07, 2021/08/02, 2021/11/04, 2023/04/19).
x-request-id
String
Request identifier.
- Valid UUID.
Response Body
Refer to WebhookModel for more details.
deleted_at
String
Denial date.
- Date in an ISO 8601 compatible format.
events
Array[hook_event]
hook_event
String
Hook event.
- Must be a valid hook event (one of: Ping, Customer, CustomerLocation, Job, Truck).
id
Integer
Resource identifier.
last_http_fail
String
Last time of url webhook execution failure.
- Date in an ISO 8601 compatible format.
last_http_success
String
Last time of url webhook execution success.
- Date in an ISO 8601 compatible format.
secret
String, Conditional
Response body HMAC signing key.
- Matches ^\s[a-zA-Z0-9\/+=]{11,270}\s$
- Base64 encoded string.
url
String
Callback URL.
- URL conforming to RFC 1738.
Code Samples
- cURL
- Python
- CSharp 2.0
curl --request PATCH --include \
--header "Authorization: Bearer {your-auth-token}" \
--header "Content-Type: application/json" \
--header "x-tenant-id: {your-tenant-id}" \
--data '{"events": [], "secret": "VGhlIGxhenkgYnJvd24gZG9n", "url": "https://test.updated.url"}' \
127.0.0.1:8003/hooks/{hook_id}
import requests, json
body = '''
{
"events": [],
"secret": "VGhlIGxhenkgYnJvd24gZG9n",
"url": "https://test.updated.url"
}
'''
response = requests.post(
'http://localhost:8003/hooks/{hook_id}',
headers={
'Authorization': 'Bearer {your-auth-token}',
'Content-Type': 'application/json',
'x-tenant-id': '{your-tenant-id}'
},
params={
},
data=body
)
results = json.loads(response.text)
print(results)
using System;
using System.Net;
using System.Collections.Specialized;
namespace CROSoftware
{
public class DemoClient
{
static public void Main ()
{
WebClient client = new WebClient();
// URL
String url = "/hooks/{hook_id}";
// Headers
client.Headers.Add("Authorization", "Bearer {your-auth-token}");
client.Headers.Add("Content-Type", "application/json");
client.Headers.Add("x-tenant-id", "{your-tenant-id}");
// Body
String body = "{\"events\": [], \"secret\": \"VGhlIGxhenkgYnJvd24gZG9n\", \"url\": \"https://test.updated.url\"}";
String json = client.UploadString(url, "patch", body);
Console.WriteLine(json);
}
}
}