Skip to main content
DELETE
/
quickbooks-desktop
/
credit-memos
/
{id}
Delete a credit memo
curl --request DELETE \
  --url https://api.conductor.is/v1/quickbooks-desktop/credit-memos/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Conductor-End-User-Id: <conductor-end-user-id>'
{
  "id": "123ABC-1234567890",
  "objectType": "qbd_credit_memo",
  "refNumber": "CM-1234",
  "deleted": true
}

Authorizations

Authorization
string
header
required

Your Conductor secret key using Bearer auth (e.g., "Authorization: Bearer {{YOUR_SECRET_KEY}}").

Headers

Conductor-End-User-Id
string
required

The ID of the EndUser to receive this request (e.g., "Conductor-End-User-Id: {{END_USER_ID}}"). The ID of the EndUser to receive this request (e.g., "Conductor-End-User-Id: {{END_USER_ID}}").

Example:

"end_usr_1234567abcdefg"

Path Parameters

id
string
required

The QuickBooks-assigned unique identifier of the credit memo to delete. The QuickBooks-assigned unique identifier of the credit memo to delete.

Example:

"123ABC-1234567890"

Response

200 - application/json

Returns a confirmation of the deletion with the ID of the deleted credit memo.

id
string
required

The QuickBooks-assigned unique identifier of the deleted credit memo.

Example:

"123ABC-1234567890"

objectType
string
required

The type of object. This value is always "qbd_credit_memo".

Allowed value: "qbd_credit_memo"
Example:

"qbd_credit_memo"

refNumber
string | null
required

The case-sensitive user-defined reference number of the deleted credit memo.

Example:

"CM-1234"

deleted
boolean
required

Indicates whether the credit memo was deleted.

Example:

true