Skip to main content
POST
/
api
/
v3
/
send
/
generate_egift_links
{
  "send": {
    "touch_id": 123456,
    "via": "generate_egift_links",
    "via_from": "Your Application Name",
    "recipient_users": [
      {
        "email": "developers@sendoso.com"
      },
      {
        "email": "developers2@sendoso.com"
      }
    ]
  }
}
{
  "success": true,
  "message": "Success! Here are your 2 eGift Card links:",
  "egift_links": [
    {
        "egift_link": "https://sendo.so/g/NzOHQCUf9eqw0",
        "recipient_email_or_phone_number": "developers@sendoso.com"
    },
    {
        "egift_link": "https://sendo.so/g/9d91rKc7O3d4",
        "recipient_email_or_phone_number": "developers2@sendoso.com"
    }
  ],
  "expiration_days": 30
}

Documentation Index

Fetch the complete documentation index at: https://developer.sendoso.com/llms.txt

Use this file to discover all available pages before exploring further.

Each recipient will have a unique link generated that is associated to the email you passed in the request

Body

send
object
required

Response

success
boolean
required
Whether or not the request was successful. Always true for 2xx responses.
message
string
required
Response message.
The sends links to share with the recipients.
{
  "send": {
    "touch_id": 123456,
    "via": "generate_egift_links",
    "via_from": "Your Application Name",
    "recipient_users": [
      {
        "email": "developers@sendoso.com"
      },
      {
        "email": "developers2@sendoso.com"
      }
    ]
  }
}
{
  "success": true,
  "message": "Success! Here are your 2 eGift Card links:",
  "egift_links": [
    {
        "egift_link": "https://sendo.so/g/NzOHQCUf9eqw0",
        "recipient_email_or_phone_number": "developers@sendoso.com"
    },
    {
        "egift_link": "https://sendo.so/g/9d91rKc7O3d4",
        "recipient_email_or_phone_number": "developers2@sendoso.com"
    }
  ],
  "expiration_days": 30
}