Start shoe recommendation processing
curl --request POST \
--url https://partner-api.ochy-prod.com/shoeRecommendation/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"shoe_recommendation_id": "550e8400-e29b-41d4-a716-446655440000"
}
'import requests
url = "https://partner-api.ochy-prod.com/shoeRecommendation/start"
payload = { "shoe_recommendation_id": "550e8400-e29b-41d4-a716-446655440000" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({shoe_recommendation_id: '550e8400-e29b-41d4-a716-446655440000'})
};
fetch('https://partner-api.ochy-prod.com/shoeRecommendation/start', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Shoe recommendation started for ID: 550e8400-e29b-41d4-a716-446655440000"
}Shoe recommendation
Start shoe recommendation processing
Step 2 of 3 — Trigger shoe recommendation processing for a recommendation created in step 1.
Returns 202 immediately; use the result endpoint to poll for completion.
POST
/
shoeRecommendation
/
start
Start shoe recommendation processing
curl --request POST \
--url https://partner-api.ochy-prod.com/shoeRecommendation/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"shoe_recommendation_id": "550e8400-e29b-41d4-a716-446655440000"
}
'import requests
url = "https://partner-api.ochy-prod.com/shoeRecommendation/start"
payload = { "shoe_recommendation_id": "550e8400-e29b-41d4-a716-446655440000" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({shoe_recommendation_id: '550e8400-e29b-41d4-a716-446655440000'})
};
fetch('https://partner-api.ochy-prod.com/shoeRecommendation/start', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Shoe recommendation started for ID: 550e8400-e29b-41d4-a716-446655440000"
}Authorizations
bearerAuthapiKeyHeaderapiKeyQuery
Recommended. Pass your API key as a Bearer token in the Authorization header: Authorization: Bearer YOUR_API_KEY.
Body
application/json
Example:
"550e8400-e29b-41d4-a716-446655440000"
Response
Processing accepted.
Example:
"Shoe recommendation started for ID: 550e8400-e29b-41d4-a716-446655440000"