Get a free Zuplo Sticker
Like Stickers? Of course you do! Use your favorite tool to call our sticker API with your mailing address and we'll pop one in the post for you. Also, tell us a little bit about why you're interested in Zuplo.
Zuplo Sticker API
Method & URL
POST: https://sticker-api.zuplo.com/sticker
Headers
Content-Type: application/json
Request Body
{
"email": "name@example.com",
"first_name": "First",
"last_name": "Last",
"address_city": "San Francisco",
"address_country": "US",
"address_line1": "123 Main St.",
"address_line2": "",
"address_postal_code": "12345",
"address_state": "CA",
"answer": 0, // NOTE: This value should be set to the sum of 29 and 8 (29+8)
"company_website": "http://example.com",
"why_interested": "I don't like the current gateway solutions available"
}
Attributes
- email (string)
- Required. Your work email address.
- first_name (string)
- Required. Your first name.
- last_name (string)
- Required. Your last/family name.
- company_website (string)
- Required. Your company website.
- address_line1 (string)
- Required. The first line of your mailing address.
- address_line2 (string)
- Optional. The second line of your mailing address.
- address_postal_code (string)
- Required. Your mailing postal code.
- address_city (string)
- Required. Your mailing city.
- address_state (string)
- Required. Your mailing state.
- address_country (string)
- Required. Your mailing country.
- answer (string)
- Required. This value should be set to the sum of 29 and 8 (29+8).
- why_interested (string)
- Required. Why you are interested in Zuplo.
Response Body (Success)
{
"message": "Sticker request successful"
}
Response Body (Error)
{
"code": "ALREADY_REQUESTED",
"help_url": "https://sticker-api.zuplo.com/sticker",
"message": "One sticker per person please. :)"
}
curl Example
curl --request POST \
--url https://sticker-api.zuplo.com/sticker \
--header 'Content-Type: application/json' \
--data '{
"email": "name@example.com",
"first_name": "First",
"last_name": "Last",
"address_city": "San Francisco",
"address_country": "US",
"address_line1": "123 Main St.",
"address_line2": "",
"address_postal_code": "12345",
"address_state": "CA",
"answer": 0, // NOTE: This value should be set to the sum of 29 and 8 (29+8)
"company_website": "http://example.com",
"why_interested": ""
}'
Errors
- ALREADY_REQUESTED
- The email address has already been used to request a sticker.
- CHECK_ADDITION
- The value of
answer
must equal the sum of 29 and 8 (29+8). - BAD_EMAIL
- The email address looks provided looks fake or invalid, please enter a real email address.
- INVALID_BODY
- The body provided was not in the correct format. See the error returned for details.
- INTERNAL_ERROR
- An unhandled error occurred. Try again later or contact support@zuplo.com.