Method allow to cancel selected sale. Sale can be only cancelled when not packed and no document is generated (sale type must be = -1).
Usage URL: https://magboss.pl/api/cancelSale.json?key=YOURAPIKEY
Method allow to cancel selected sale. Sale can be only cancelled when not packed and no document is generated (sale type must be = -1).
Usage URL: https://magboss.pl/api/cancelSale.json?key=YOURAPIKEY
(put those in your URL, e.g. ?id=123)
id | required
integer
Internal identifier of sale.
lang
string
Language of result. ISO 2 Letter Language Codes
Example: en, pl, cs
messages
object
Generic success or failure message.
Click here for more information
success
string[]
List of success messages
danger
string[]
List of errors, blocks the operation
warning
string[]
List of warnings, does not block the operation
Example URL: https://magboss.pl/api/cancelSale.json?key=YOURAPIKEY&lang=en&id=112087
{
"messages": {
"danger": [
"You do not have permission to perform this action."
]
}
}
Example URL: https://magboss.pl/api/cancelSale.xml?key=YOURAPIKEY&lang=en&id=112087
<?xml version="1.0" encoding="utf-8"?>
<root>
<messages>
<danger>
<item>You do not have permission to perform this action.</item>
</danger>
</messages>
</root>