All URIs are relative to http://localhost:4000
Method | HTTP request | Description |
---|---|---|
advance_order | PATCH /api/v2/platform/orders/{id}/advance | Advances an Order |
apply_coupon_code_order | PATCH /api/v2/platform/orders/{id}/apply_coupon_code | Apply Coupon Code for an Order |
approve_order | PATCH /api/v2/platform/orders/{id}/approve | Approves an Order |
cancel_order | PATCH /api/v2/platform/orders/{id}/cancel | Cancels an Order |
complete_order | PATCH /api/v2/platform/orders/{id}/complete | Completes an Order |
create_order | POST /api/v2/platform/orders | Creates an Order |
delete_order | DELETE /api/v2/platform/orders/{id} | Delete an Order |
empty_order | PATCH /api/v2/platform/orders/{id}/empty | Empties an Order |
next_order | PATCH /api/v2/platform/orders/{id}/next | Next an Order |
orders_list | GET /api/v2/platform/orders | Return a list of Orders |
show_order | GET /api/v2/platform/orders/{id} | Return an Order |
update_order | PATCH /api/v2/platform/orders/{id} | Update an Order |
use_store_credit_order | PATCH /api/v2/platform/orders/{id}/use_store_credit | Use Store Credit for an Order |
advance_order(id, opts)
Advances an Order
Advances an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product' # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
}
begin
# Advances an Order
result = api_instance.advance_order(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->advance_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> advance_order_with_http_info(id, opts)
begin
# Advances an Order
data, status_code, headers = api_instance.advance_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->advance_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json
apply_coupon_code_order(id, opts)
Apply Coupon Code for an Order
Creates Store Credit payment for an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product', # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
coupon_code_param: SpreeClient::CouponCodeParam.new # CouponCodeParam |
}
begin
# Apply Coupon Code for an Order
api_instance.apply_coupon_code_order(id, opts)
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->apply_coupon_code_order: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> apply_coupon_code_order_with_http_info(id, opts)
begin
# Apply Coupon Code for an Order
data, status_code, headers = api_instance.apply_coupon_code_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->apply_coupon_code_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
coupon_code_param | CouponCodeParam | [optional] |
nil (empty response body)
- Content-Type: application/json
- Accept: application/vnd.api+json
approve_order(id, opts)
Approves an Order
Approves an Order, when using a token created for a user, it will save this user as the approver
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product' # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
}
begin
# Approves an Order
result = api_instance.approve_order(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->approve_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> approve_order_with_http_info(id, opts)
begin
# Approves an Order
data, status_code, headers = api_instance.approve_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->approve_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json
cancel_order(id, opts)
Cancels an Order
Cancels an Order, when using a token created for a user, it will save this user as the canceler
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product' # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
}
begin
# Cancels an Order
api_instance.cancel_order(id, opts)
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->cancel_order: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> cancel_order_with_http_info(id, opts)
begin
# Cancels an Order
data, status_code, headers = api_instance.cancel_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->cancel_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/vnd.api+json
complete_order(id, opts)
Completes an Order
Marks an Order as completed
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product' # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
}
begin
# Completes an Order
result = api_instance.complete_order(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->complete_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> complete_order_with_http_info(id, opts)
begin
# Completes an Order
data, status_code, headers = api_instance.complete_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->complete_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json
create_order(opts)
Creates an Order
Creates an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
opts = {
include: 'line_items,variants,product', # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
create_order_params: SpreeClient::CreateOrderParams.new({order: SpreeClient::CreateOrderParamsOrder.new}) # CreateOrderParams |
}
begin
# Creates an Order
result = api_instance.create_order(opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->create_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> create_order_with_http_info(opts)
begin
# Creates an Order
data, status_code, headers = api_instance.create_order_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->create_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
create_order_params | CreateOrderParams | [optional] |
- Content-Type: application/json
- Accept: application/vnd.api+json
delete_order(id)
Delete an Order
Deletes an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
begin
# Delete an Order
api_instance.delete_order(id)
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->delete_order: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> delete_order_with_http_info(id)
begin
# Delete an Order
data, status_code, headers = api_instance.delete_order_with_http_info(id)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->delete_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/vnd.api+json
empty_order(id, opts)
Empties an Order
Removes all line items, promotions, shipment and payments from an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product' # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
}
begin
# Empties an Order
result = api_instance.empty_order(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->empty_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> empty_order_with_http_info(id, opts)
begin
# Empties an Order
data, status_code, headers = api_instance.empty_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->empty_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json
next_order(id, opts)
Next an Order
Moves an Order to the next state
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product' # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
}
begin
# Next an Order
result = api_instance.next_order(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->next_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> next_order_with_http_info(id, opts)
begin
# Next an Order
data, status_code, headers = api_instance.next_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->next_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json
orders_list(opts)
Return a list of Orders
Returns a list of Orders
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
opts = {
page: 1, # Integer |
per_page: 50, # Integer |
include: 'line_items,variants,product', # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
filter_state_eq: 'complete' # String |
}
begin
# Return a list of Orders
result = api_instance.orders_list(opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->orders_list: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> orders_list_with_http_info(opts)
begin
# Return a list of Orders
data, status_code, headers = api_instance.orders_list_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ResourcesList>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->orders_list_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
page | Integer | [optional] | |
per_page | Integer | [optional] | |
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
filter_state_eq | String | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json
show_order(id, opts)
Return an Order
Returns an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product' # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
}
begin
# Return an Order
result = api_instance.show_order(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->show_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> show_order_with_http_info(id, opts)
begin
# Return an Order
data, status_code, headers = api_instance.show_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->show_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json
update_order(id, opts)
Update an Order
Updates an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product', # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
update_order_params: SpreeClient::UpdateOrderParams.new({order: SpreeClient::CreateOrderParamsOrder.new}) # UpdateOrderParams |
}
begin
# Update an Order
result = api_instance.update_order(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->update_order: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> update_order_with_http_info(id, opts)
begin
# Update an Order
data, status_code, headers = api_instance.update_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->update_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
update_order_params | UpdateOrderParams | [optional] |
- Content-Type: application/json
- Accept: application/vnd.api+json
use_store_credit_order(id, opts)
Use Store Credit for an Order
Creates Store Credit payment for an Order
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::OrdersApi.new
id = 'id_example' # String |
opts = {
include: 'line_items,variants,product', # String | Select which associated resources you would like to fetch, see: <a href=\"https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a>
amount_param: SpreeClient::AmountParam.new # AmountParam |
}
begin
# Use Store Credit for an Order
api_instance.use_store_credit_order(id, opts)
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->use_store_credit_order: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> use_store_credit_order_with_http_info(id, opts)
begin
# Use Store Credit for an Order
data, status_code, headers = api_instance.use_store_credit_order_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue SpreeClient::ApiError => e
puts "Error when calling OrdersApi->use_store_credit_order_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
include | String | Select which associated resources you would like to fetch, see: <a href="https://jsonapi.org/format/#fetching-includes\">https://jsonapi.org/format/#fetching-includes</a> | [optional] |
amount_param | AmountParam | [optional] |
nil (empty response body)
- Content-Type: application/json
- Accept: application/vnd.api+json