https://api.warehousefs.com/public/v1/stored-value-manifests/{shipvineIdentifier}
The stored value manifests resource allows the merchant to view which values have been assigned by Shipvine to stored value cards such as gift cards or gift certificates.
The {shipvineIdentifier} field in the URL template should be
replaced with the Shipvine identifier for the fulfillment request. You
can obtain this identifier by inspecting the /OutboundShipments/OutboundShipment/FulfillmentRequest/WfsIdentifier
element of the Outbound Shipment resource.
Example Request URL
https://api.warehousefs.com/public/v1/stored-value-manifests/2-13-319-68634-558-5
No query parameters may be included in the request.
No entity body may be included in the request.
If successful, the API will return 200 OK as well as a <StoredValueManifest /> element in the entity body.
If any error occurs, the HTTP status code will not be 200 OK
. An <Errors /> element may be present in the entity body.
Example Response Entity Body
<?xml version="1.0" encoding="utf-8"?> <StoredValueManifest xmlns="urn:WarehouseFS-1.0"> <FulfillmentRequest> <MerchantIdentifier>Test</MerchantIdentifier> <WfsIdentifier>2-13-319-68634-558-5</WfsIdentifier> </FulfillmentRequest> <Lines> <!-- (1) --> <Line> <Item> <MerchantIdentifier>STANDARD GIFT CARD</MerchantIdentifier> <!-- (2) --> </Item> <Value> <Amount>25.0000</Amount> <!-- (3) --> <Currency>USD</Currency> </Value> <Code>GIFT79876LG</Code> <!-- (4) --> </Line> <Line> <Item> <MerchantIdentifier>STANDARD GIFT CARD</MerchantIdentifier> </Item> <Value> <Amount>25.0000</Amount> <Currency>USD</Currency> </Value> <Code>GIFT79877LG</Code> </Line> <Line> <Item> <MerchantIdentifier>STANDARD GIFT CARD</MerchantIdentifier> </Item> <Value> <Amount>50.0000</Amount> <Currency>USD</Currency> </Value> <Code>GIFT82454DF</Code> </Line> </Lines> </StoredValueManifest>