ZfApi
Click here for a complete list of operations.
GetDownloadOriginalKey
Creates a download original key for the provided 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/GetDownloadOriginalKey"
<?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>
<GetDownloadOriginalKey xmlns="http://www.zenfolio.com/api/1.6">
<photoIds>
<int>int</int>
<int>int</int>
</photoIds>
<password>string</password>
</GetDownloadOriginalKey>
</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>
<GetDownloadOriginalKeyResponse xmlns="http://www.zenfolio.com/api/1.6">
<GetDownloadOriginalKeyResult>string</GetDownloadOriginalKeyResult>
</GetDownloadOriginalKeyResponse>
</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/GetDownloadOriginalKey?photoIds=string&photoIds=string&password=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"?> <string xmlns="http://www.zenfolio.com/api/1.6">string</string>
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/GetDownloadOriginalKey HTTP/1.1 Host: www.zenfolio.com Content-Type: application/x-www-form-urlencoded Content-Length: length photoIds=string&photoIds=string&password=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://www.zenfolio.com/api/1.6">string</string>
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": "GetDownloadOriginalKey",
"params": [photoIds, password],
"id": id
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length
{
"result": value,
"error": null,
"id": id
}