InvoiceXpress API

clients.get

Returns a specific client.

You call this method by submitting a HTTP GET request to the following URL :

https://screen-name.invoicexpress.net/clients/:client-id.xml

Parameters

Parameters are the data you pass with the call.

api_key

Your secret identifier. You find your API Key under Account Overview in the Account section.

Rules: Required

Return Values

This is the result that is passed back to you.

Success

<?xml version="1.0" encoding="UTF-8"?>
<client>
  <id>345</id>
  <name>Bruce Norris</name>
  <email>foo@bar.com</email>
  <address>Badgad</address>
  <postal_code>123-456</postal_code>
  <country>Portugal</country>
  <fiscal_id>1122331122</fiscal_id>
  <website>www.brucenorris.com</website>
  <phone>4433551242</phone>
  <fax>4433551243</fax>
  <preferred_contact>
    <name>Norris</name>
    <email>foo@foo.pt</email>
    <phone>4433551242</phone>
  </prefered_contact>
  <observations>Computer Processed</observations>
  <send_options>1</send_options>
  <!-- 1 - Original -->
</client>

Error

HTTP: 401 Access denied
The API Key parameter is missing or incorrect.
HTTP: 404 Not Found
No client matches the supplied :client-id.