POST
/
api
/
v3
/
marketplace
/
products
/
send
Send a Product (variant)
curl --request POST \
  --url https://app.staging.sendo.so/api/v3/marketplace/products/send \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "variant_ids": [
    "<string>"
  ],
  "recipient_email": "<string>",
  "recipient_first_name": "<string>",
  "recipient_last_name": "<string>",
  "sender_first_name": "<string>",
  "sender_last_name": "<string>",
  "sender_email": "<string>",
  "sender_organization_name": "<string>",
  "message": "<string>",
  "gift_exchange_enabled": true,
  "meeting_url": "<string>"
}'
{
  "products": [
    {
      "variant_id": "<string>"
    }
  ],
  "send": {
    "id": "<string>"
  }
}

Required Auth Scopes

marketplace or smartsend

Body

variant_ids
array<string>
required
The catalog product variant ids (fetched from the marketplace) to be sent. Note that currently only one product variant can be sent at a time. If more than one product variant is sent, only the first one will be processed.
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.
sender_first_name
string
The first name of the sender.
sender_last_name
string
The last name of the sender.
sender_email
string
The email of the sender.
sender_organization_name
string
The organization name of the sender.
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 ID.
send
object
required
id
string
required
The send ID.