Create a sales representative
Creates a sales representative that references an existing employee, vendor, or other-name record so it can be assigned on sales forms.
post/quickbooks-desktop/sales-representatives
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Request body
Example request
{
"initial": "JD",
"isActive": true,
"entityId": "80000001-1234567890"
}Response
Returns the newly created sales representative.
Example response
{
"id": "80000001-1234567890",
"objectType": "qbd_sales_representative",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"initial": "JD",
"isActive": true,
"entity": {
"id": "80000001-1234567890",
"fullName": "John Doe"
}
}