Related API: This extension modifies the Get Future Allocatable Items operation.
| Action Type | HTTP |
|---|---|
| Full Action ID | http.commerce.fulfillment.futureShipments.after |
| Runs multiple custom functions? | Yes |
JavaScript File Structure
Action files share the following basic structure:callback—This argument follows the established JavaScript callback pattern: it takes an error as the first argument (or null if there is no error) and a result as the second argument (if required).
context—This argument provides the function access to relevant objects and methods that interface with Kibo.
Context: HTTP
The methods and objects documented here are available to this action through the use of thecontext argument.
REST API OperationThis action corresponds to the Create Future Shipments for Future Allocatable Items operation. HTTP Request POST
api/commerce/shipments/{shipmentNumber}/futureAllocatableItems
Request BodyUse
context.request.body to read/write the HTTP request body using this action.
Response BodyUse
context.response.body to write the HTTP response body using this action.
Context Objects Available to All HTTP Actions
request
Accesses the current HTTP request. In the case of Before actions, updates can be made to the request before Kibo eCommerce processes it.| Property | Type | Description |
|---|---|---|
| params | object | The input parameters to the service or webpage. |
| headers | object | The request headers. |
| method | string | The request method. |
| url | string | The request URL. |
| path | string | The request path. |
| cookies | object | |
| The request cookies. |
response
Accesses the current HTTP response. For both Before and After actions, updates can be made to the response before Kibo eCommerce processes it.| Property | Type | Description |
|---|---|---|
| header | object | The response header collection. |
| viewData | object | |
| The viewData collection used by the storefront rendering engine. |
Context Methods Available to All HTTP Actions
request.get
Returns an HTTP header value for the specified header key.| Parameter | Type | Description |
|---|---|---|
| key | string | The header key. |
response.get
Gets a field from the response.| Parameter | Type | Description |
|---|---|---|
| key | object | The field to obtain. |
response.set
Sets the HTTP headers for the response.| Parameter | Type | Description |
|---|---|---|
| values | object | The values for the HTTP headers. |
response.set2
Updates a field in the response.| Parameter | Type | Description |
|---|---|---|
| key | string | The key of the field. |
| value | string | The value of the field. |
response.remove
Removes an HTTP header from the response.| Parameter | Type | Description |
|---|---|---|
| key | string | The HTTP header to remove. |
response.redirect
Redirects the incoming URL.| Parameter | Type | Description |
|---|---|---|
| url | string | The destination URL. |
response.end
Ends the response so that other actions or Kibo eCommerce logic can run. Also, signals the callback to complete.| Parameter | Type | Description |
|---|---|---|
| N/A | N/A | N/A |
get.resource
Returns the currently persisted value of the requested resource. **Not available for all calls.| Parameter | Type | Description |
|---|---|---|
| N/A | N/A | N/A |
get.resourceStatus
Gets the HTTP resource status.| Parameter | Type | Description |
|---|---|---|
| N/A | N/A | N/A |
items.urlHelper.getUrl
Gets the current URL.| Parameter | Type | Description |
|---|---|---|
| type | ||
| object | ||
| config | ||
Context Objects Available to All Actions
apiContext
Accesses Kibo eCommerce tenant information.| Property | Type | Description |
|---|---|---|
| baseUrl | string | The base URL for the site. |
| basePciUrl | string | The base PCI URL for the site. |
| tenantPod | string | The name of the tenant pod in which the tenant resides. |
| appClaims | string | The application claims token. |
| appKey | string | The application key. |
| tenantId | integer | Unique identifier for the tenant. |
| siteId | integer | Unique identifier for the site. This ID is used at all levels of a store, catalog, and tenant to associate objects to a site. |
| masterCatalogId | integer | Unique identifier for the master catalog. |
| catalogId | integer | The unique identifier for the product catalog. Catalogs are part of a master catalog. |
| currencyCode | string | The default three-letter ISO currency code for monetary amounts. |
| previewDate | date/time | The date and time that the content is being viewed. This might be a future date if the content is previewed with an active date range set in the future. |
| localeCode | string | The locale code per the country code provided. This code determines the localized content to use and display. |
| correlationId | string | The unique identifier of the API request associated with the event action, which might contain multiple actions. |
| isAuthorizedAsAdmin | Boolean | Indicates whether the Dev Account user is authorized as an admin. |
| userClaims | string | The user claims token. |
configuration
Receives a JSON response that contains information about the configuration data set in the Action Management JSON editor.| Property | Type | Description |
|---|---|---|
| Varies | object | Custom fields and values that you can set in the Action Management JSON Editor. |

