Skip to main content

Update Customer Location

PATCH /customers/{customer_id}/locations/{customer_location_id}

Update an existing customer location.

Roles

Users with the following roles may access this endoint:

Dispatcher

Breaking Changes

2021/04/07

Request

PATCH /customers/{customer_id}/locations/{customer_location_id}/
Authorization: Bearer {your-auth-token}
Content-Type: application/json
x-tenant-id: {your-tenant-id}
{
"is_commercial": true,
"note": "A note about something",
"reference_number": "A140",
"renewal_date": "2049-10-31T11:32:38.390000",
"sales_rep": "Jane Johnson"
}

Path Parameters

customer_id Integer, Required

Customer identifier.


customer_location_id Integer, Required

Customer location 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 UpdateDispatchCustomerLocationModel for more details.

account_number_1 String, Optional

Customer account number.

  • At least 0 and no more than 128 characters.

account_number_2 String, Optional

Customer account number.

  • At least 0 and no more than 128 characters.

is_active Boolean, Optional

Records marked inactive are treated as deleted (soft delete).

  • One of 0, 1, True, False (case insensitive).

is_commercial Boolean, Optional

Commercial address if true, private if false.

  • One of 0, 1, True, False (case insensitive).

note String, Optional

Notes (free text).

  • At least 0 and no more than 2048 characters.

reference_number String, Optional

Reference number (free text).

  • At least 1 and no more than 256 characters.

renewal_date String, Optional

Renewal date.

  • Date in an ISO 8601 compatible format.

sales_rep String, Optional

Name of sales representative.

  • At least 1 and no more than 64 characters.

sales_rep_id String, Optional

Sales rep identifier. May be an integer provider id, the sales user UUID, or the username.

  • At least 0 and no more than 64 characters.

suspension_id Integer, Optional

Suspension identifier.

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 DispatchCustomerLocationModel for more details.

account_number_1 String

Customer account number.

  • At least 0 and no more than 128 characters.

account_number_2 String

Customer account number.

  • At least 0 and no more than 128 characters.

addresses Array[CustomerAddressModel]

Refer to CustomerAddressModel.


contacts Array[CustomerContactModel]

Refer to CustomerContactModel.


created_on String

Timestamp of creation (must be in past).

  • Date occurring in the past in an ISO 8601 compatible format.

customer_id Integer

Customer identifier.


is_active Boolean

Records marked inactive are treated as deleted (soft delete).

  • One of 0, 1, True, False (case insensitive).

is_commercial Boolean, Conditional

Commercial address if true, private if false.

  • One of 0, 1, True, False (case insensitive).

last_updated_on String

  • Date occurring in the past in an ISO 8601 compatible format.

location_id Integer

Location identifier.


name String

Name (free text).

  • At least 1 and no more than 64 characters.

note String, Conditional

Notes (free text).

  • At least 0 and no more than 2048 characters.

parent_id Integer

Parent record identifier.


reference_number String, Conditional

Reference number (free text).

  • At least 1 and no more than 256 characters.

renewal_date String

Renewal date.

  • Date in an ISO 8601 format.

sales_rep String, Conditional

Name of sales representative.

  • At least 1 and no more than 64 characters.

sales_rep_id String, Conditional

Sales rep identifier.


suspension_id Integer, Conditional

Suspension identifier.

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 = "/customers/{customer_id}/locations/{customer_location_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 = "{\"is_commercial\": true, \"note\": \"A note about something\", \"reference_number\": \"A140\", \"renewal_date\": \"2049-10-31T11:32:38.390000\", \"sales_rep\": \"Jane Johnson\"}";

String json = client.UploadString(url, "patch", body);
Console.WriteLine(json);
}
}
}