POST
https://test-api.finerworks.com/v3/submit_note
Create Note
Adds a note an order's log. Notes are for back reference purposes only and are NOT used for outside communication instructions to the production department or customer service.
Body
| Name | Description | Type | Additional information |
|---|---|---|---|
| order_id | Assigned FinerWorks order id number | number |
Required |
| subject | subject line of message | text |
Required Max length: 100 |
| message | Body of message | text |
Required |
Example JSON Body
application/json, text/json
{
"order_id": 123456,
"subject": "Note to self",
"message": "This was my very first sale."
}
Sample Code Library
curl --location --request POST 'https://test-api.finerworks.com/v3/submit_note' \
--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 '{
"order_id": 123456,
"subject": "Note to self",
"message": "This was my very first sale."
}'require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://test-api.finerworks.com/v3/submit_note');
$request->setMethod(HTTP_Request2::METHOD_POST);
$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('{
'order_id': 123456,
'subject': 'Note to self',
'message': 'This was my very first sale.'
}');
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://test-api.finerworks.com/v3/submit_note");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
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", "{
'order_id': 123456,
'subject': 'Note to self',
'message': 'This was my very first sale.'
}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);var settings = {
"url": "https://test-api.finerworks.com/v3/submit_note",
"method": "POST",
"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({
'order_id': 123456,
'subject': 'Note to self',
'message': 'This was my very first sale.'
}),
};
$.ajax(settings).done(function (response) {
console.log(response);
});var https = require('follow-redirects').https;
var options = {
'method': 'POST',
'hostname': 'test-api.finerworks.com',
'path': '/v3/submit_note',
'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 () {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) { console.error(error); });
});
var postData = JSON.stringify({
'order_id': 123456,
'subject': 'Note to self',
'message': 'This was my very first sale.'
});
req.write(postData);
req.end();require "uri"
require "net/http"
url = URI("https://test-api.finerworks.com/v3/submit_note")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Post.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 = "{
'order_id': 123456,
'subject': 'Note to self',
'message': 'This was my very first sale.'
}"
response = https.request(request)
puts response.read_body| Name | Description | Type | Additional information |
|---|---|---|---|
| success | Indicates if the status returned was successful | boolean | None. |
| status_code | HTTP Status code | HttpStatusCode | None. |
| message | Additional information may be included here | text | None. |
| debug | Used to assist debugging any errors | Object | None. |
| reference_id | Used to reference crucial events | text | None. |
| domain | The domain in which the request was made | text | None. |
Example JSON Response
application/json, text/json
{
"success": true,
"status_code": 200,
"message": "",
"debug": null,
"reference_id": "dfbfbdbcd5334594808946e6c260dd31",
"domain": null
}