Delighted · Example Payload

Send To Person

Example request to send an NPS survey via email to a new customer.

NPSNet Promoter ScoreCSATCustomer SatisfactionCESCustomer Effort ScoreSurveyCustomer ExperienceFeedbackeNPS

Send To Person is an example object payload from Delighted, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "summary": "Send NPS survey to a customer",
  "description": "Example request to send an NPS survey via email to a new customer.",
  "request": {
    "method": "POST",
    "url": "https://api.delighted.com/v1/people.json",
    "headers": {
      "Authorization": "Basic YOUR_API_KEY_BASE64",
      "Content-Type": "application/json"
    },
    "body": {
      "email": "jony@appleseed.com",
      "name": "Jony Appleseed",
      "delay": 86400,
      "properties": {
        "customer_id": "cust_12345",
        "plan": "pro",
        "question_product_name": "Acme Widget"
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "24248363",
      "email": "jony@appleseed.com",
      "name": "Jony Appleseed",
      "survey_scheduled_at": 1780846613,
      "properties": {
        "customer_id": "cust_12345",
        "plan": "pro",
        "question_product_name": "Acme Widget"
      }
    }
  }
}