Here are the steps necessary to post a successful API request to the SnowShoe API with Postman.
- Create a new request in Postman
- Set the HTTP verb to
POST - Set the request URL to
https://api.snowshoestamp.com/v3/stamp - Select the Headers tab
- Create a new header with the key
Content-Typeand the valueapplication/json - Create a second header with the key
SnowShoe-Api-Keyand set the value to your API Key (found in the client portal under the Settings of your application)
- Select the Body tab
- Set the body type radio button to
rawand selectJSONin the drop down to the right - Use the below JSON value to submit a DEVA stamp serial test
{
"data": [[264,172],[267,371],[242,286],[69,375],[66,221]]
}
- Click the Send button to post the request

