Update Account (Partial)
Endpoint
PATCH /api/v3/accounts/{accountId}
Description
Partially updates fields on an existing account. You only need to include the fields you want to update.
Authentication Required: Yes — Bearer Token
URL Parameters
Name | Type | Required | Description |
---|---|---|---|
accountId |
integer/string | Yes | The unique identifier of the account. |
Query Parameters
This endpoint does not support query parameters.
Request Body
Content-Type: application/json
Provide one or more account fields to update. Only the specified fields will be modified.
Schema:
{ "FieldName": "NewValue" }
Example Request
PATCH https://api.briefingedge.com/api/v3/accounts/12345 Authorization: Bearer <token> Content-Type: application/json { "AccountName": "Updated Account Name", "IsActive": true }
Success Response
Code: 200 OK
Content: Returns the updated account object.
Error Responses
Code | Message |
---|---|
400 | Bad Request |
401 | Unauthorized |
404 | Not Found |
500 | Internal Server Error |