Comment on page
Create a recurring order copy
How to create a recurring order copy via API
To create a new recurring order copy, send a
POST
request to the /api/recurring_order_copies
endpoint, passing the resource arguments in the request body.POST https://yourdomain.commercelayer.io/api/recurring_order_copies
Body Parameter | Type | Required |
---|---|---|
type | string | Required |
attributes.place_target_order | boolean | Optional |
attributes.reuse_wallet | boolean | Optional, default is 'true' |
attributes.reference | string | Optional |
attributes.reference_origin | string | Optional |
attributes.metadata | object | Optional |
relationships.source_order | object | Required |
relationships.order_subscription | object | Required |
Request
Response
The following request creates a new recurring order copy:
curl -g -X POST \
'https://yourdomain.commercelayer.io/api/recurring_order_copies' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "recurring_order_copies",
"relationships": {
"source_order": {
"data": {
"type": "orders",
"id": "ABCRtyUpBa"
}
},
"order_subscription": {
"data": {
"type": "order_subscriptions",
"id": "BCDRtyUpBa"
}
}
}
}
}'
On success, the API responds with a
201 Created
status code, returning the created resource object:{
"data": {
"id": "xYZkjABcde",
"type": "recurring_order_copies",
"links": {
"self": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde"
},
"attributes": {
"status": "in_progress",
"started_at": "2018-01-01T12:00:00.000Z",
"completed_at": "2018-01-01T12:00:00.000Z",
"failed_at": "2018-01-01T12:00:00.000Z",
"errors_log": {
"status": [
"cannot transition from draft to placed"
]
},
"errors_count": 2,
"place_target_order": true,
"reuse_wallet": true,
"created_at": "2018-01-01T12:00:00.000Z",
"updated_at": "2018-01-01T12:00:00.000Z",
"reference": "ANY-EXTERNAL-REFEFERNCE",
"reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
"metadata": {
"foo": "bar"
}
},
"relationships": {
"source_order": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/relationships/source_order",
"related": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/source_order"
}
},
"target_order": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/relationships/target_order",
"related": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/target_order"
}
},
"events": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/relationships/events",
"related": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/events"
}
},
"order_subscription": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/relationships/order_subscription",
"related": "https://yourdomain.commercelayer.io/api/recurring_order_copies/xYZkjABcde/order_subscription"
}
}
},
"meta": {
"mode": "test"
}
}
}
Last modified 8mo ago