sale/credit_note/getHistory
POST
/sale/credit_note/getHistoryThis returns the list of credit note histories for a credit note available in the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The credit note ID to retrieve its histories.
Page number of the results.
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"credit_note_id": 0,
"page": 0,
"limit": 0
}
Responses
Returns only if there is an error.
The credit note ID.
The credit note status ID.
The total number of results available.
The list of credit note histories.
The credit note status.
The credit note status ID.
The user ID that created the history.
The username that created the history.
The history comment.
The date time history was created.
{
"error": [
"string"
],
"credit_note_id": 0,
"credit_note_status_id": 0,
"total": 0,
"histories": [
{
"credit_note_status": "string",
"credit_note_status_id": 0,
"user_id": 0,
"user": "string",
"comment": "string",
"date_added": "string"
}
]
}