API: Get Attendee Details

Use this API endpoint to request details about a single attendee along with the ability to include additional data that is not normally included by default. Also, you will have the ability to expand certain data types from their ID value to their full data model representation during the parsing of your API request.

Note: You must have given the right permissions to your API Key from within your account integration settings to look up attendees.

GET /attendees/{id}

Path Parameters
Param Type Description
id String The attendee ID to request its full details.
Query Parameters
Param Type Description
include String List Used to include more data within the results that are normally not provided by default. Can be any of the following: payment, activity, details. Separate multiple values with commas.
expand String List Used to expand and populate specific nodes within the results which are usually just IDs to their full data objects. Can be any of the following: event, account. Separate multiple values with commas.
Example Request
curl -X GET "https://api.corsizio.com/v1/attendees/588531d5308a374a0209da81?include=payment&expand=event" \
     -H "Authorization: Bearer {YOUR_API_SECRET_KEY}"
Example Response
{
  "id": "588531d5308a374a0209da81",
  "name": "Jamie Garland",
  "firstName": "Jamie",
  "lastName": "Eight",
  "email": "jamie@example.com",
  "phone": null,
  "address": "116 SW Clay St, Portland, OR 97201, USA",
  "note": "Note from attendee submitted upon registration",
  "remark": "Internal private note about the attendee",
  "status": "active",
  "manual": false,
  "attended": null,
  "transferred": null,
  "canceled": null,
  "created": "2017-01-22T22:27:33.034Z",
  "updated": "2017-02-14T20:15:22.250Z",
  "accountId": "5255ea833ccc44c65400000d",
  "eventId": "57f672e54c6828710009a86e",
  "coupon": {},
  "feedback": {},
  "fields": [
    {
      "label": "Favorite Color",
      "value": "blue"
    },
    {
      "label": "Tell us why you want to enroll",
      "value": "I want to network with others"
    }
  ],
  "addons": [],
  "payment": {
    "label": "Association Member",
    "description": "Fresh Off The Press Event",
    "refunded": false,
    "early": false,
    "paid": "2017-01-22T22:27:32.000Z",
    "asked": null,
    "changed": "2017-01-29T13:49:57.811Z",
    "deposit": false,
    "offline": false,
    "exempt": false,
    "refund": 0,
    "pending": 0,
    "amount": 45.2,
    "full": 45.2,
    "fees": 3.32,
    "taxes": 5.2,
    "tax": 13,
    "subtotal": 40,
    "addons": 0,
    "discount": 0,
    "price": 40,
    "currency": "usd"
  },
  "transactions": [
    {
      "method": "credit-card",
      "chargeId": "ch_9yrXqwW5yByXYZ",
      "currency": "usd",
      "amount": 45.2,
      "fees": 3.32,
      "card": {
        "name": "Jamie Garland",
        "brand": "Visa",
        "last4": "4242",
        "country": "US"
      },
      "refund": 0,
      "refunds": [],
      "refunded": false,
      "paid": true,
      "created": "2017-01-22T22:27:32.000Z"
    }
  ],
  "event": {
    "id": "57f672e54c6828710009a86e",
    "name": "Fresh Off The Press Event",
    "startDate": "2017-04-06T17:00:00.000Z",
    "endDate": "2017-04-22T21:00:00.000Z",
    "registrationCloseDate": "2017-04-22T21:00:00.000Z",
    "displayDate": "Thursday, April 6, 10 AM - Saturday, April 22, 2 PM (EDT)",
    "timeZone": "America/Toronto",
    "location": "Super Hall, 555 Yonge Street",
    "priceFrom": 40,
    "priceTo": 50,
    "prices": [
      {
        "price": 40,
        "label": "Association Member"
      },
      {
        "price": 50,
        "label": "General"
      }
    ],
    "currency": "usd",
    "pageUrl": "https://example.corsizio.com/event/57f672e54c6828710009a86e",
    "formUrl": "https://example.corsizio.com/register/57f672e54c6828710009a86e",
    "photoUrl": null,
    "mapUrl": "https://www.google.com/maps/place/555+Yonge+Street",
    "summary": "The purpose of this event...",
    "summaryHtml": "<p>The purpose of this event...</p>\n",
    "account": "5255ea833ccc44c65400000d"
  }
}
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us