items.get
Returns a specific item.
You call this method by submitting a HTTP GET request to the following URL :
https://screen-name.invoicexpress.net/items/:item-id.xml
Parameters
Parameters are the data you will pass with the call.
api_key
Your secret identifier. You find your API Key under Account Overview in the Account section.
Rules: Required
item-id
Item id.
Rules: Required
Return Values
This is the result that will be passed back to you.
Success
<?xml version="1.0" encoding="UTF-8"?> <item> <id>26</id> <name>stuff</name> <description>good stuff</description> <unit_price>3.0</unit_price> <unit>unit</unit> <tax> <name>IVA20</name> <!-- tax value:20.0% --> </tax> </item>
Error
HTTP: 401 Access denied
The API Key parameter is missing or incorrect.
HTTP: 404 Not Found
No item matches the supplied :item-id.
The API Key parameter is missing or incorrect.
HTTP: 404 Not Found
No item matches the supplied :item-id.
