Availability: Public Preview
This endpoint is currently in public preview and available only to approved accounts. Please contact Arta to request access for your organization.
Schedule a carrier pickup for a self-ship shipment
POST
/self_ship_collections
curl \
--request POST 'https://api.arta.io/self_ship_collections' \
--header "Content-Type: application/json" \
--header "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y" \
--data '{"self_ship_collection":{"collection_date":"2026-03-06","collection_time":"10:00:00","location":{"address_line_1":"123 Main St","address_line_2":"string","city":"New York","close_time":"17:00:00","contact":{"email_address":"john@example.com","name":"John Doe","phone_number":"+1-555-123-4567"},"country":"US","package_location":"front","postal_code":"10001","region":"NY"},"service":{"carrier":"fedex","code":"express","route":"domestic"}}}'
Request examples
# Headers
Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y
# Payload
{
"self_ship_collection": {
"collection_date": "2026-03-06",
"collection_time": "10:00:00",
"location": {
"address_line_1": "123 Main St",
"address_line_2": "string",
"city": "New York",
"close_time": "17:00:00",
"contact": {
"email_address": "john@example.com",
"name": "John Doe",
"phone_number": "+1-555-123-4567"
},
"country": "US",
"package_location": "front",
"postal_code": "10001",
"region": "NY"
},
"service": {
"carrier": "fedex",
"code": "express",
"route": "domestic"
}
}
}
Response examples (201)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "scheduled",
"service": {
"code": "express",
"route": "domestic",
"carrier": "fedex"
},
"location": {
"city": "New York",
"region": "NY",
"contact": {
"name": "John Doe",
"phone_number": "+1-555-123-4567",
"email_address": "john@example.com"
},
"country": "US",
"close_time": "17:00:00",
"postal_code": "10001",
"address_line_1": "123 Main St",
"address_line_2": null,
"package_location": "front"
},
"closed_at": null,
"shortcode": "ACME-S3GP24",
"created_at": "2026-03-01T12:00:00.000000",
"updated_at": "2026-03-01T12:00:00.000000",
"collection_date": "2026-03-06",
"collection_time": "10:00:00"
}
Response examples (400)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"errors": {
"detail": "string"
}
}
Response examples (422)
{
"errors": {
"detail": "string"
}
}