An order object contains the following fields:

AttributeTypeDescription
idStringOrder ID (the unique identifier for the order)
uuidStringUnique order identifier generated by us
nameStringThe full name of the customer who made the order (purchaser/sender)
emailStringThe email address of the customer who made the order (purchaser/sender)
recipient_nameStringThe full name of the video message's recipient (likely also your package recipient)
recipient_emailStringThe email address of the video message's recipient (likely also your package recipient)
recipient_phoneStringThe cell phone number of the video message's recipient (likely also your package recipient)
record_urlStringWeb address where a user can record and save their video message
playback_urlStringWeb address where the recipient can view their video message
send_methodStringThe customer's chosen method of sending the video message, either "email" or "text"
send_triggerStringThe customer's chosen option of when to send the video; either "package" for when the package is delivered or "date" if the customer chooses to have the video delivered on a specific date instead
send_onDateTimeThe date and time that the customer has chosen to send the video (this field is only applicable if a customer chooses to send the video message on a specific date)
carrierStringThe shipping carrier for the package. Must be one of UPS, FedEx, or USPS
tracking_numberStringThe tracking number of the package
deliveredBooleanThe status of the package delivery
video_titleStringThe title of the video created by the customer
video_durationIntThe duration of the video recorded or uploaded by the customer, in milliseconds
video_processedBooleanThe status of the video being processed after the customer has recorded or uploaded
priceIntThe price, in cents, that was charged to the customer for the Vift Video Gift Message. For accounts using a revenue share payment plan, this price will be used for billing. For accounts using a license fee payment plan, it is not applicable.
statusStringThe status of the order
created_atDateTimeThe date and time of when the order was created
updated_atDateTimeThe date and time of when the order was updated
recorded_atDateTimeThe date and time of when the order was recorded
delivered_atDateTimeThe date and time of when the order (physical package associated with the video) was delivered
sent_atDateTimeThe date and time of when the video message was sent to the recipient
viewed_atDateTimeThe date and time of when the video message was first viewed by the recipient

JSON Representation

{
  "id": "YOUR_ORDER_ID",
  "uuid": "d41dfd35-461f-4e04-816b-d6bcf5ed30a7",
  "name": "John Doe",
  "email": "[email protected]",
  "recipient_name": "Jane Doe",
  "recipient_email": "[email protected]",
  "recipient_phone": null,
  "record_url": "https://vift.com/record/d41dfd35-461f-4e04-816b-d6bcf5ed30a7",
  "playback_url": "https://vift.com/watch/d41dfd35-461f-4e04-816b-d6bcf5ed30a7",
  "send_method": "email",
  "send_trigger": "package",
  "send_on": null,
  "carrier": "UPS",
  "tracking_number": "1Z999AA10123456784",
  "delivered": "1",
  "video_title": "My Vift Video",
  "video_duration": "30072",
  "video_processed": "1",
  "status": "delivered",
  "created_at": "2015-01-01T00:00:00Z",
  "updated_at": "2015-01-01T02:00:00Z",
  "recorded_at": "2015-01-01T01:00:00Z",
  "delivered_at": "2015-01-01T02:00:00Z",
  "sent_at": "2015-01-01T02:00:03Z",
  "viewed_at": "2015-01-01T02:12:00Z"
}