POST /emails/join-us
Pass the following properties via application/json or form encoding in the body of the request.
A dictionary with fields
Field | Type | Description |
---|---|---|
company_name | String | A String value |
identification_number | String | A String value |
size | String | String enumarion of 'small', 'large', 'light' |
country | Country | 2 letter ISO representation of a country (string) |
language | Language | 2 letter ISO representation of a language in lowercase |
Optional. Email address | ||
telephone | String | Optional. A String value |
POST /emails/join-us HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.8.0
Accept-Language: en-US,en;q=0.5
Content-Type: application/json
Content-Length: 188
{
"company_name": "...",
"identification_number": "...",
"size": "small",
"country": "BE",
"language": "nl",
"email": "example@domain.com",
"telephone": "..."
}
HTTP/1.1 200 OK