Radial Integration | 2016

Store Fulfillment > Store Fulfillment API > POST api/v4/PickTickets/UnAssign

POST api/v4/PickTickets/UnAssign

This method will release a Pick Ticket from the currently assigned user, returning the Pick Ticket to a “Printed” status. Note that any unsaved pick progress will be lost.

Request Parameters

pickTicketUnAssignRequest: object of type PickTicketUnAssignRequest

Name Description
Usage
Type
Allowed values
Required?

pickTicketId

Pick batch identifier for previously printed Pick Tickets. This value will be temporarily auto-generated for New Pick Tickets and can change once the Pick Ticket has been printed

String

yes

pickTicketGroupId

Unique identifier of a Pick Ticket Group within the Pick Ticket identified by the pickTicketId

Integer

no

Response Parameters

pickTicketUnAssignResponse: object of type PickTicketUnAssignResponse

Name Description
Usage
Type
Allowed values
Required?

unAssigned

Indicates if the request was successful

Boolean

yes

sessionToken

Session token to be used for maintaining session state across batch operations.

String

yes

baseSystemVersion

Indicates the version of the underlying Store Fulfillment core application.

String

yes

Example - Un-assign a Pick Ticket

XML Request

Authorization: Basic U2VydmljZTpzZXJ2aWNlOg==

<PickTicketUnAssignRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://schemas.datacontract.org/2004/07/VendorNet.Web.Api.Contracts.V4">
   <pickTicketId>2016-05-06 19:54:29.833</pickTicketId>
</PickTicketUnAssignRequest>      

XML Response

<PickTicketUnAssignResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://schemas.datacontract.org/2004/07/VendorNet.Web.Api.Contracts.V4">
    <baseSystemVersion>45</baseSystemVersion>
    <sessionToken>GFT76RMMKQFBJ0BO</sessionToken>
    <unAssigned>true</unAssigned>
</PickTicketUnAssignResponse>

JSON Request

Authorization: Basic U2VydmljZTpzZXJ2aWNlOg==
{
   "pickTicketId": "2015-05-29 19:54:47.497"
}

JSON Response

{
    "unAssigned": true,
    "sessionToken": "LU2Z0K6209C4DWLZ",
    "baseSystemVersion": "45"
}

 

 

Copyright © 2017 Radial. All rights reserved.