Skip to main content

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

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"
}

Path Parameters

hook_id Integer, Required

Webhook identifier.

Query Parameters

note

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:


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:


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

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);
}
}
}