POST call, passing a JSON body as specified below.{
giftcard: {
cardBarcode: 0987654321, //Must be present to update an existing card, if empty a new card will be created
cardCountry: "IT",
issueDate: "2016-04-11 00:00:00",
activationDate: "2016-04-11 00:00:00",
expirationDate: "2017-04-11 00:00:00",
cardValue: 200.00,
active: "F",
status: "1"
},
giftcardMovements: [
{
movementType: "1",
value: 130.00
}
]
}
{
success: true,
code: 200,
message: "Inserimento/Update riuscito con successo.",
gift: {
progId: "8",
cardBarcode: "0987654321"
}
}