POST
/
api
/
v3
/
smartsend
/
recommendations
/
send
curl --request POST \
  --url https://app-sandbox.staging.sendo.so/api/v3/smartsend/recommendations/send \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "recipient_email": "<string>",
  "recipient_first_name": "<string>",
  "recipient_last_name": "<string>",
  "price_lte_usd": 123,
  "ship_to_country_code": "<string>",
  "message": "<string>",
  "gift_exchange_enabled": true,
  "meeting_url": "<string>"
}'
{
  "products": [
    {
      "variant_id": "<string>"
    }
  ],
  "send": {
    "id": "<string>"
  }
}

Required Auth Scopes

smartsend

Body

recipient_email
string
required

The email of the recipient.

recipient_first_name
string
required

The first name of the recipient.

recipient_last_name
string
required

The last name of the recipient.

price_lte_usd
integer

Limit the maximum price of product in USD.

ship_to_country_code
string

Restrict the products to ship to a specific country.

message
string

An optional message to include with the product.

gift_exchange_enabled
boolean

[Beta] An optional flag to enable gift exchange.

meeting_url
string

An optional URL to a meeting.

Response

products
array
required
variant_id
string
required

The sent product variant’s ID.

send
object
required
id
string
required

The send ID.