Creates a new client. The XML for the new client is returned on a successful request with the timestamps recorded.
If the account doesn’t allow for more clients to be created, a “507 Insufficient Storage” response will be returned.
Request
<?xml version="1.0" encoding="UTF-8"?>
<client>
<fullname>Sébastien Grosjean</firstname>
</client>
Response
Status: 201 Created
Location: https://www.bookingsync.com/clients/#{new-client-id}.xml
<?xml version="1.0" encoding="UTF-8"?>
<client>
<account-id type="integer">1</account-id>
<id type="integer">1</id>
<created-at type="datetime">2012-05-18T22:01:45Z</created-at>
<updated-at type="datetime">2012-05-18T22:01:45Z</updated-at>
<address1 nil="true"></address1>
<address2 nil="true"></address2>
<city nil="true"></city>
<country-code nil="true"></country-code>
<state nil="true"></state>
<zip nil="true"></zip>
<email nil="true"></email>
<fax nil="true"></fax>
<fullname>Sébastien Grosjean</fullname>
<mobile nil="true"></mobile>
<phone nil="true"></phone>
<notes nil="true"></notes>
</client>