Create a Hosted Session
Availability for Inbound Booking Sessions: Public Preview
Inbound Booking is currently in public preview and available only to approved accounts. Please contact Arta to request access for your organization.
Create a hosted session resource to generate an Arta Booking url.
This endpoint expects one of three types of the hosted_session schema:
Booking Sessions: With this schema, you must minimally include valid objects and origin details in your API call. Your customers will be able to confirm their destination details and book their preferred shipment quote. Additionally, you may provide a success_url and a cancel_url to determine where Arta will redirect the user after the session is complete.
Inbound Booking Sessions: With this schema, you must minimally include valid objects and destination details in your API call. Your customers will be able to confirm their origin details and book their preferred shipment quote. For Self Ship quotes, Arta will make any labels available for download. Customers may optionally review and update object dimension details in the hosted session workflow if
can_user_confirm_object_dimensions
is set to true. Additionally, you may provide a success_url and a cancel_url to determine where Arta will redirect the user after the session is complete.Shared Requests: Alternatively, you may share an existing quote request by sending a
hosted_session
object with the corresponding request's request_id.
Use the private url in the successful hosted session response to direct your users to the Arta Booking web page so that they may configure and book their own shipment.
curl \
--request POST 'https://api.arta.io/hosted_sessions' \
--header "Content-Type: application/json" \
--header "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y" \
--data '{"hosted_session":{"additional_services":["signature_delivery"],"cancel_url":"http://example.com/cancelled","destination":{"access_restrictions":["string"],"address_line_1":"87 Richardson St","address_line_2":"string","address_line_3":"string","city":"Brooklyn","contacts":[{"email_address":"docs@arta.io","name":"Contact Name","phone_number":"646 828 7333"}],"country":"US","postal_code":"11211","region":"NY","title":"Gallery"},"insurance":"arta_transit_insurance","internal_reference":"Purchase Order: 2801","objects":[{"components":[{"customs":{"country_of_origin":"US","hs_code":"123456","medium":"oil on canvas","temporary_admission":true},"details":{"creation_date":"1980","creator":"Bob Smithson","notes":"Artist signature in the lower left corner","title":"Black Rectangle"},"internal_reference":"Accession ID: 823","public_reference":"Round Smithson work","type":"painting_framed","value":"2500.00","value_currency":"USD"}],"current_packing":["no_packing"],"customs":{"country_of_origin":"US","hs_code":"123456","medium":"oil on canvas","temporary_admission":true},"depth":"3","details":{"creation_date":"1980","creator":"Bob Smithson","is_cites":false,"is_fragile":false,"materials":["canvas"],"notes":"Artist signature in the lower left corner","title":"Black Rectangle"},"height":"32","images":["http://example.com/image.jpg"],"internal_reference":"Accession ID: 823","public_reference":"Round Smithson work","subtype":"painting_unframed","unit_of_measurement":"in","value":"2500.00","value_currency":"USD","weight":"3.0","weight_unit":"lb","width":"15"}],"origin":{"access_restrictions":["string"],"address_line_1":"87 Richardson St","address_line_2":"string","address_line_3":"string","city":"Brooklyn","contacts":[{"email_address":"docs@arta.io","name":"Contact Name","phone_number":"646 828 7333"}],"country":"US","postal_code":"11211","region":"NY","title":"Gallery"},"preferred_parcel_transport_services":["ground"],"preferred_quote_types":["parcel"],"public_instructions_booking_review":"string","public_instructions_confirmation":"string","public_instructions_location_quotes":"string","public_instructions_payment":"string","public_reference":"Order #1437","quoting_strategy":"best_rate","shipping_notes":"New customer","success_url":"http://example.com/success","tags":["spring-jewelry-sale"],"type":"booking"}}'
# Headers
Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y
# Payload
{
"hosted_session": {
"additional_services": [
"signature_delivery"
],
"cancel_url": "http://example.com/cancelled",
"destination": {
"access_restrictions": [
"string"
],
"address_line_1": "87 Richardson St",
"address_line_2": "string",
"address_line_3": "string",
"city": "Brooklyn",
"contacts": [
{
"email_address": "docs@arta.io",
"name": "Contact Name",
"phone_number": "646 828 7333"
}
],
"country": "US",
"postal_code": "11211",
"region": "NY",
"title": "Gallery"
},
"insurance": "arta_transit_insurance",
"internal_reference": "Purchase Order: 2801",
"objects": [
{
"components": [
{
"customs": {
"country_of_origin": "US",
"hs_code": "123456",
"medium": "oil on canvas",
"temporary_admission": true
},
"details": {
"creation_date": "1980",
"creator": "Bob Smithson",
"notes": "Artist signature in the lower left corner",
"title": "Black Rectangle"
},
"internal_reference": "Accession ID: 823",
"public_reference": "Round Smithson work",
"type": "painting_framed",
"value": "2500.00",
"value_currency": "USD"
}
],
"current_packing": [
"no_packing"
],
"customs": {
"country_of_origin": "US",
"hs_code": "123456",
"medium": "oil on canvas",
"temporary_admission": true
},
"depth": "3",
"details": {
"creation_date": "1980",
"creator": "Bob Smithson",
"is_cites": false,
"is_fragile": false,
"materials": [
"canvas"
],
"notes": "Artist signature in the lower left corner",
"title": "Black Rectangle"
},
"height": "32",
"images": [
"http://example.com/image.jpg"
],
"internal_reference": "Accession ID: 823",
"public_reference": "Round Smithson work",
"subtype": "painting_unframed",
"unit_of_measurement": "in",
"value": "2500.00",
"value_currency": "USD",
"weight": "3.0",
"weight_unit": "lb",
"width": "15"
}
],
"origin": {
"access_restrictions": [
"string"
],
"address_line_1": "87 Richardson St",
"address_line_2": "string",
"address_line_3": "string",
"city": "Brooklyn",
"contacts": [
{
"email_address": "docs@arta.io",
"name": "Contact Name",
"phone_number": "646 828 7333"
}
],
"country": "US",
"postal_code": "11211",
"region": "NY",
"title": "Gallery"
},
"preferred_parcel_transport_services": [
"ground"
],
"preferred_quote_types": [
"parcel"
],
"public_instructions_booking_review": "string",
"public_instructions_confirmation": "string",
"public_instructions_location_quotes": "string",
"public_instructions_payment": "string",
"public_reference": "Order #1437",
"quoting_strategy": "best_rate",
"shipping_notes": "New customer",
"success_url": "http://example.com/success",
"tags": [
"spring-jewelry-sale"
],
"type": "booking"
}
}
# Headers
Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y
# Payload
{
"hosted_session": {
"request_id": "string"
}
}
# Headers
Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y
# Payload
{
"hosted_session": {
"additional_services": [
"signature_delivery"
],
"can_user_confirm_object_dimensions": false,
"cancel_url": "http://example.com/cancelled",
"destination": {
"access_restrictions": [
"string"
],
"address_line_1": "87 Richardson St",
"address_line_2": "string",
"address_line_3": "string",
"city": "Brooklyn",
"contacts": [
{
"email_address": "docs@arta.io",
"name": "Contact Name",
"phone_number": "646 828 7333"
}
],
"country": "US",
"postal_code": "11211",
"region": "NY",
"title": "Gallery"
},
"insurance": "arta_transit_insurance",
"internal_reference": "Purchase Order: 2801",
"objects": [
{
"components": [
{
"customs": {
"country_of_origin": "US",
"hs_code": "123456",
"medium": "oil on canvas",
"temporary_admission": true
},
"details": {
"creation_date": "1980",
"creator": "Bob Smithson",
"notes": "Artist signature in the lower left corner",
"title": "Black Rectangle"
},
"internal_reference": "Accession ID: 823",
"public_reference": "Round Smithson work",
"type": "painting_framed",
"value": "2500.00",
"value_currency": "USD"
}
],
"current_packing": [
"no_packing"
],
"customs": {
"country_of_origin": "US",
"hs_code": "123456",
"medium": "oil on canvas",
"temporary_admission": true
},
"depth": "3",
"details": {
"creation_date": "1980",
"creator": "Bob Smithson",
"is_cites": false,
"is_fragile": false,
"materials": [
"canvas"
],
"notes": "Artist signature in the lower left corner",
"title": "Black Rectangle"
},
"height": "32",
"images": [
"http://example.com/image.jpg"
],
"internal_reference": "Accession ID: 823",
"public_reference": "Round Smithson work",
"subtype": "painting_unframed",
"unit_of_measurement": "in",
"value": "2500.00",
"value_currency": "USD",
"weight": "3.0",
"weight_unit": "lb",
"width": "15"
}
],
"origin": {
"access_restrictions": [
"string"
],
"address_line_1": "87 Richardson St",
"address_line_2": "string",
"address_line_3": "string",
"city": "Brooklyn",
"contacts": [
{
"email_address": "docs@arta.io",
"name": "Contact Name",
"phone_number": "646 828 7333"
}
],
"country": "US",
"postal_code": "11211",
"region": "NY",
"title": "Gallery"
},
"preferred_parcel_transport_services": [
"ground"
],
"preferred_quote_types": [
"parcel"
],
"public_instructions_booking_review": "string",
"public_instructions_confirmation": "string",
"public_instructions_location_quotes": "string",
"public_instructions_object_details": "Please confirm the dimensions of the objects you are shipping.",
"public_instructions_payment": "string",
"public_reference": "Order #1437",
"quoting_strategy": "best_rate",
"shipping_notes": "New customer",
"success_url": "http://example.com/success",
"tags": [
"spring-jewelry-sale"
],
"type": "inbound_booking"
}
}
{
"id": 42,
"url": "https://book.arta.io/b/42/6f76b6e1-ce25-43a9-b4ea-2ceaac24ec7e",
"tags": [],
"type": "booking",
"origin": {
"city": "New York",
"title": "Warehouse",
"region": "NY",
"country": "US",
"contacts": [
{
"name": "Mary Quinn Sullivan",
"phone_number": "(333) 333-3333",
"email_address": "mary@example.com"
}
],
"postal_code": "10019",
"address_line_1": "11 W 53rd St",
"address_line_2": null,
"address_line_3": null,
"access_restrictions": []
},
"status": "new",
"objects": [
{
"id": 12346,
"type": "client_package",
"depth": "2",
"value": "15000",
"width": "10",
"height": "10.5",
"images": [],
"weight": "3.5",
"details": {
"notes": null,
"title": null,
"creator": null,
"is_cites": false,
"materials": [],
"is_fragile": false,
"creation_date": null
},
"subtype": "prepacked_box",
"components": [
{
"id": "1f26b6e1-ce25-43a9-b4ea-2ceaac24ec3a",
"type": "painting_framed",
"value": "15000",
"customs": {
"medium": "oil on canvas",
"hs_code": "123456",
"country_of_origin": "US",
"temporary_admission": true
},
"details": {
"notes": "Artist signature in the lower left corner",
"title": "Black Rectangle",
"creator": "Bob Smithson",
"creation_date": "1980"
},
"value_currency": "USD",
"public_reference": "Round Smithson work",
"internal_reference": "Accession ID: 823"
}
],
"weight_unit": "lb",
"value_currency": "USD",
"current_packing": [
"cardboard_box"
],
"public_reference": null,
"internal_reference": null,
"unit_of_measurement": "in"
},
{
"id": 12345,
"type": "art",
"depth": "2",
"value": "100.00",
"width": "36",
"height": "24",
"images": [],
"weight": "1",
"customs": {
"medium": "oil on canvas",
"hs_code": "123456",
"country_of_origin": "US",
"temporary_admission": true
},
"details": {
"notes": "notes",
"title": "It's just jazz",
"creator": "Robert Irwin",
"is_cites": false,
"materials": [],
"is_fragile": false,
"creation_date": null
},
"subtype": "painting_unframed",
"components": [],
"weight_unit": "lb",
"value_currency": "USD",
"current_packing": [],
"public_reference": null,
"internal_reference": null,
"unit_of_measurement": "in"
}
],
"insurance": null,
"shortcode": "DEMO-B49SVZ",
"cancel_url": "http://example.com/cancel",
"created_at": "2021-01-21T17:22:08.818747",
"updated_at": "2021-01-21T17:22:10.129653",
"destination": null,
"success_url": "http://example.com/success",
"private_token": "6f76b6e1-ce25-43a9-b4ea-2ceaac24ec7e",
"shipping_notes": null,
"payment_process": "invoicing",
"public_reference": null,
"quoting_strategy": "best_rate",
"internal_reference": null,
"additional_services": [
"signature_delivery"
],
"preferred_quote_types": [],
"public_instructions_payment": null,
"public_instructions_confirmation": null,
"can_user_confirm_object_dimensions": false,
"public_instructions_booking_review": null,
"public_instructions_object_details": null,
"public_instructions_location_quotes": null
}
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"errors": {
"detail": "string"
}
}