Updates the properties of a salesperson purchaser object for Business Central.
HTTP request
Replace the URL prefix for Business Central depending on environment following the guideline.
PATCH businesscentralPrefix/companies({id})/salespeoplePurchasers({id})
Request headers
| Header | Value |
|---|---|
| Authorization | Bearer {token}. Required. |
| Content-Type | application/json |
| If-Match | Required. When this request header is included and the eTag provided doesn't match the current tag on the salespeoplePurchaser, the salespeoplePurchaser won't be updated. |
Request body
In the request body, supply the values for relevant fields that should be updated. Existing properties that aren't included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance you shouldn't include existing values that haven't changed.
Response
If successful, this method returns a 200 OK response code and an updated salespeoplePurchaser object in the response body.
Example
Request
Here's an example of the request.
PATCH https://{businesscentralPrefix}/api/v2.0/companies({id})/salespeoplePurchasers({id})
Content-type: application/json
{
"id": "f57a8943-92b5-ed11-94cc-000d3a2feca1",
"jobTitle": "Sales Manager",
"commisionPercent": 8.5,
"phoneNo": "+1 425-555-0198"
}
Response
Here's an example of the response.
HTTP/1.1 200 OK
Content-type: application/json
{
"id": "f57a8943-92b5-ed11-94cc-000d3a2feca1",
"code": "JS",
"displayName": "Jennifer Smith",
"email": "jennifer.smith@contoso.com",
"email2": "js@contoso.onmicrosoft.com",
"phoneNo": "+1 425-555-0198",
"jobTitle": "Sales Manager",
"commisionPercent": 8.5,
"privacyBlocked": false,
"blocked": false,
"lastModifiedDateTime": "2025-04-29T16:18:45Z"
}
Related information
Tips for working with the APIs
salespersonPurchaser
GET salespersonPurchaser
DELETE salespersonPurchaser
POST salespersonPurchaser