ZfApi
Click here for a complete list of operations.
AddMessage
Posts a message to a mailbox. The mailbox must be owned by the currently authenticated user. More...
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /api/1.6/zfapi.asmx HTTP/1.1
Host: www.zenfolio.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.zenfolio.com/api/1.6/AddMessage"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<AddMessage xmlns="http://www.zenfolio.com/api/1.6">
<mailboxId>string</mailboxId>
<updater>
<PosterName>string</PosterName>
<PosterUrl>string</PosterUrl>
<PosterEmail>string</PosterEmail>
<Body>string</Body>
<IsPrivate>boolean</IsPrivate>
</updater>
</AddMessage>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<AddMessageResponse xmlns="http://www.zenfolio.com/api/1.6">
<AddMessageResult>
<MailboxId>string</MailboxId>
<Index>int</Index>
<PostedOn>dateTime</PostedOn>
<PosterName>string</PosterName>
<PosterLoginNane>string</PosterLoginNane>
<PosterUrl>string</PosterUrl>
<PosterEmail>string</PosterEmail>
<Body>string</Body>
<IsPrivate>boolean</IsPrivate>
</AddMessageResult>
</AddMessageResponse>
</soap:Body>
</soap:Envelope>
JSON-RPC
The following is a sample JSON-RPC request and response. The placeholders shown need to be replaced with actual values.
POST /api/1.6/zfapi.asmx HTTP/1.1
Host: www.zenfolio.com
Content-Type: application/json
Content-Length: length
{
"method": "AddMessage",
"params": [mailboxId, updater],
"id": id
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length
{
"result": value,
"error": null,
"id": id
}