ZfApi
Click here for a complete list of operations.
CreateFavoritesSet
Creates a favorites set with the specified list of photos. More...
Test
The test form is only available for methods with primitive types as parameters.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/CreateFavoritesSet" <?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> <CreateFavoritesSet xmlns="http://www.zenfolio.com/api/1.6"> <name>string</name> <photographerLogin>string</photographerLogin> <photoIds> <int>int</int> <int>int</int> </photoIds> </CreateFavoritesSet> </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> <CreateFavoritesSetResponse xmlns="http://www.zenfolio.com/api/1.6"> <CreateFavoritesSetResult>int</CreateFavoritesSetResult> </CreateFavoritesSetResponse> </soap:Body> </soap:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /api/1.6/zfapi.asmx/CreateFavoritesSet?name=string&photographerLogin=string&photoIds=string&photoIds=string HTTP/1.1 Host: www.zenfolio.com
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <int xmlns="http://www.zenfolio.com/api/1.6">int</int>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /api/1.6/zfapi.asmx/CreateFavoritesSet HTTP/1.1 Host: www.zenfolio.com Content-Type: application/x-www-form-urlencoded Content-Length: length name=string&photographerLogin=string&photoIds=string&photoIds=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <int xmlns="http://www.zenfolio.com/api/1.6">int</int>
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": "CreateFavoritesSet", "params": [name, photographerLogin, photoIds], "id": id }
HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 Content-Length: length { "result": value, "error": null, "id": id }