occasion-sdk
Version:
An SDK library that enables access to Occasion's application, providing a rich DSL for creating and managing bookings.
38 lines (37 loc) • 711 B
JSON
{
"data": {
"id": "1",
"type": "orders",
"attributes": {
"price": 3.0,
"quantity": 2
},
"relationships": {
"attendees": {
"data": [
{
"id": "1",
"type": "attendees"
}
],
"links": {
"self": "https://example.com/api/v1/orders/1/relationships/attendees/",
"related": "https://example.com/api/v1/orders/1/attendees/"
}
}
},
"links": {
"self": "https://example.com/api/v1/orders/1/"
}
},
"included": [
{
"id": "1",
"type": "attendees",
"attributes": {
"first_name": "sxh",
"last_name": "smith"
}
}
]
}