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-Type
and the valueapplication/json
- Create a second header with the key
SnowShoe-Api-Key
and 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
raw
and selectJSON
in 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