Update File Selection
    
        
        Uri: https://api.finerworks.com/v3/update_file_selection
        
Method: PUT
    
Updates a list of a users current selected image files based on the selection key.
Body
| Name | Description | Type | Additional information | 
|---|---|---|---|
| guids | A list of file guids that were selected. | array (globally unique identifier) | Required | 
| guid | Master key (guid) assigned to all files that are selected. | globally unique identifier | Required | 
Example JSON Body
application/json, text/json
{
  "guids": [
    "ead72ead-dc92-4521-b5a3-2263280b8f7a",
    "d6fd0080-a85f-47f0-8bed-a17fa81789b2"
  ],
  "guid": "e8ddd74b-5e4b-4c9e-b145-6fbb90677342"
}
              Sample Code Library
                        
curl --location --request sample_method 'https://api.finerworks.comsample_endpoint' \
--header 'Content-Type: application/json' \
--header 'web_api_key: my-web-api-key-goes-here' \
--header 'app_key: my-app-key-goes-here' \
--data-raw '{
  "guids": [
    "ead72ead-dc92-4521-b5a3-2263280b8f7a",
    "d6fd0080-a85f-47f0-8bed-a17fa81789b2"
  ],
  "guid": "e8ddd74b-5e4b-4c9e-b145-6fbb90677342"
}'
                            
                        
                    
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.finerworks.comsample_endpoint');
$request->setMethod(HTTP_Request2::METHOD_sample_method);
$request->setConfig(array(
'follow_redirects' => TRUE
));
$request->setHeader(array(
'Content-Type' => 'application/json',
'web_api_key' => 'my-web-api-key-goes-here',
'app_key' => 'my-app-key-goes-here'
));
$request->setBody('{
  'guids': [
    'ead72ead-dc92-4521-b5a3-2263280b8f7a',
    'd6fd0080-a85f-47f0-8bed-a17fa81789b2'
  ],
  'guid': 'e8ddd74b-5e4b-4c9e-b145-6fbb90677342'
}');
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}
                        
                    
var client = new RestClient("https://api.finerworks.comsample_endpoint");
client.Timeout = -1;
var request = new RestRequest(Method.sample_method);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("web_api_key", "my-web-api-key-goes-here");
request.AddHeader("app_key", "my-app-key-goes-here");
request.AddParameter("application/json", "{
  'guids': [
    'ead72ead-dc92-4521-b5a3-2263280b8f7a',
    'd6fd0080-a85f-47f0-8bed-a17fa81789b2'
  ],
  'guid': 'e8ddd74b-5e4b-4c9e-b145-6fbb90677342'
},  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
                        
                    
var settings = {
"url": "https://api.finerworks.comsample_endpoint",
"method": "sample_method",
"timeout": 0,
"headers": {
"Content-Type": "application/json",
"web_api_key": "my-web-api-key-goes-here",
"app_key": "my-app-key-goes-here"
},
"data": JSON.stringify({
  'guids': [
    'ead72ead-dc92-4521-b5a3-2263280b8f7a',
    'd6fd0080-a85f-47f0-8bed-a17fa81789b2'
  ],
  'guid': 'e8ddd74b-5e4b-4c9e-b145-6fbb90677342'
}),
};
$.ajax(settings).done(function (response) {
console.log(response);
});
                        
                    
                        
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'sample_method',
'hostname': 'api.finerworks.com',
'path': 'sample_endpoint',
'headers': {
'Content-Type': 'application/json',
'web_api_key': 'my-web-api-key-goes-here',
'app_key': 'my-app-key-goes-here'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
  "guids": [
    "ead72ead-dc92-4521-b5a3-2263280b8f7a",
    "d6fd0080-a85f-47f0-8bed-a17fa81789b2"
  ],
  "guid": "e8ddd74b-5e4b-4c9e-b145-6fbb90677342"
});
req.write(postData);
req.end();
                            
                        
                    
                        
    require "uri"
    require "net/http"
    url = URI("https://api.finerworks.comsample_endpoint")
    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true
    request = Net::HTTP::sample_method.new(url)
    request["Content-Type"] = "application/json"
    request["web_api_key"] = "my-web-api-key-goes-here"
    request["app_key"] = "my-app-key-goes-here"
    request.body = "{
  'guids': [
    'ead72ead-dc92-4521-b5a3-2263280b8f7a',
    'd6fd0080-a85f-47f0-8bed-a17fa81789b2'
  ],
  'guid': 'e8ddd74b-5e4b-4c9e-b145-6fbb90677342'
}"
    response = https.request(request)
    puts response.read_body
                        
                    | Name | Description | Type | Additional information | 
|---|---|---|---|
| guids | A list of file guids that were selected. | array (globally unique identifier) | Required | 
| status | Response status details | response_status | None. | 
Example JSON Response
application/json, text/json
{
  "guids": [
    "de52b086-18ec-42e9-9dd7-82b3610d29cb",
    "0fedf742-b7f0-47f3-803b-28665e2f7d4b"
  ],
  "status": {
    "success": true,
    "status_code": 100,
    "message": "sample string 2",
    "debug": {}
  }
}