FidResa
When an item is booked in a Catalog, a FidResa is created.
Remember a FidResa is a subclass of AdEvent so it inherit all the fields from is super class (see AdEvent)
code
unique booking voucher code
Alphanumeric
255 characters max
quantity
quantity booked
Double
item
Ref. to the booked item
shipTo
The shop where this resa should be sent
Note : this object has 2 deprecated attributs : quantite (replaced by quantity) and validite.
Example1
Get All resa of a member
GET
{
"FidResa":{
"member": {
"login": "mister.test@adelya.com"
}
}
}
Example 2
Create a Resa for a given member
PUT
{
"FidResa":{
"member":{
"id":1440
},
"item":{
"loadFromKeys": { "idExternal": "ITEMIDEXT-1515"}
},
"quantity":"1"
}
}