Venue Manager shop API - DigitalProduct
Digital Product specific endpoints for the Venue Manager shop platform.
Links to the other modules’ endpoints can be found at http://docs.api.venuemanager.net/.
Et simpelt REST-interface hvor Tulle kan kommunikere med shopløsningen fra Venue Manager.
Resource Group ¶
Digitale produkter ¶
Søg efter kunder og deres produkterGET/products{?name,company,street,email,customerId,orderId,tokenUid,barcode,quick_search,festiwebPersonId}
Mindst ét søge-kriterie skal udfyldes.
Example URI
- name
string
(optional) Example: Rakel * Hovn*
er tilladt som joker.- company
string
(optional) Example: Combine **
er tilladt som joker.- street
string
(optional) Example: Dannebrogsgade *Kun sammen med name eller company.
*
er tilladt som joker.string
(optional) Example: rah@combine.dk- customerId
number
(optional) Example: 76529- orderId
number
(optional) Example: 76529- tokenUid
string
(optional) Example: 8768765876875- barcode
string
(optional) Example: 000109028100000164- quick_search
string
(optional) Example: Rakel CombineSøgning på tværs af alle felter. Kun for Sphinx søgning.
- festiwebPersonId
number
(optional) Example: 76529
200
Headers
Content-Type: application/json
Body
[
{
"id": 38081,
"address": {
"name": "Rakel Hovn",
"company": "Combine A/S",
"street": "Dannebrogsgade 58A, 2.",
"zipCode": "9000",
"city": "Aalborg",
"countryCode": "DK",
"email": "rah@combine.dk",
"phone": "+45 20781206"
},
"orders": [
{
"id": 76529,
"authorizedTime": "2015-12-15 08:53:36",
"billingAddress": {
"name": "Rakel Hovn",
"company": "Combine A/S",
"street": "Dannebrogsgade 58A, 2.",
"zipCode": "9000",
"city": "Aalborg",
"countryCode": "DK",
"email": "rah@combine.dk",
"phone": "+45 20781206"
},
"deliveryAddress": {
"name": "Rakel Hovn",
"company": "Combine A/S",
"street": "Dannebrogsgade 58A, 2.",
"zipCode": "9000",
"city": "Aalborg",
"countryCode": "DK"
},
"digitalProducts": [
{
"id": 457,
"name": "Lørdagsarmbånd",
"invalidateTime": "null",
"productImageUrl": "https://placecats.com/300/200",
"barcode": "000109028100000164",
"alias": "'Walthers armbånd'",
"tokens": [
{
"uid": "8768765876875",
"insertTime": "2015-12-15 08:53:36",
"invalidateTime": "null"
}
],
"events": [
{
"time": "2015-12-15 08:53:36",
"type": "general",
"description": "Købt"
}
]
}
]
}
]
}
]
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array"
}
400
Headers
Content-Type: application/json
Body
{
error: "No arguments specified"
}
Historik for et digitalt produktGET/products/{digitalProductId}
Returnerer en komplet historik for det digitale produkt, herunder alle overdragelser etc.
Example URI
- digitalProductId
number
(required) Example: 457The digital product we want information for.
200
Headers
Content-Type: application/json
Body
{
"digitalProductId": 457,
"name": "Lørdagsarmbånd",
"alias": "'Walthers armbånd'",
"invalidateTime": "null",
"orders": [
{
"id": 76529,
"authorizedTime": "2015-12-15 08:53:36",
"billingAddress": {
"name": "Rakel Hovn",
"company": "Combine A/S",
"street": "Dannebrogsgade 58A, 2.",
"zipCode": "9000",
"city": "Aalborg",
"countryCode": "DK",
"email": "rah@combine.dk",
"phone": "+45 20781206"
},
"deliveryAddress": {
"name": "Rakel Hovn",
"company": "Combine A/S",
"street": "Dannebrogsgade 58A, 2.",
"zipCode": "9000",
"city": "Aalborg",
"countryCode": "DK"
},
"digitalProducts": [
{
"id": 457,
"name": "Lørdagsarmbånd",
"invalidateTime": "null",
"productImageUrl": "https://placecats.com/300/200",
"barcode": "000109028100000164",
"alias": "'Walthers armbånd'",
"tokens": [
{
"uid": "8768765876875",
"insertTime": "2015-12-15 08:53:36",
"invalidateTime": "null"
}
],
"events": [
{
"time": "2015-12-15 08:53:36",
"type": "general",
"description": "Købt"
}
]
}
],
"customerId": 38081,
"CustomerAddress": {
"name": "Rakel Hovn",
"company": "Combine A/S",
"street": "Dannebrogsgade 58A, 2.",
"zipCode": "9000",
"city": "Aalborg",
"countryCode": "DK",
"email": "rah@combine.dk",
"phone": "+45 20781206"
}
}
]
}
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"digitalProductId": {
"type": "number"
},
"name": {
"type": "string"
},
"alias": {
"type": "string"
},
"invalidateTime": {
"type": "string",
"description": "null if valid"
},
"orders": {
"type": "array"
}
}
}
404
Headers
Content-Type: application/json
Body
{
error: "Unknown digital product ID."
}
Tilføj kommentarPOST/products/{digitalProductId}/comment
Tilføjer en intern kommentar til et aktivt digitalt produkt.
Example URI
- digitalProductId
number
(required) Example: 457
Headers
Content-Type: application/json
Body
{
"comment": "Customer is rude and has received final warning."
}
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"comment": {
"type": "string"
}
},
"required": [
"comment"
]
}
204
404
Headers
Content-Type: application/json
Body
{
error: "Unknown digital product ID."
}
403
Headers
Content-Type: application/json
Body
{
error: "No empty comments!"
}
Blokér tokenDELETE/products/{digitalProductId}/tokens/{uid}]
Spærrer et armbånd.
Example URI
- digitalProductId
number
(required) Example: 457The digital product the token belongs to.
- uid
string
(required) Example: 8768765876875The token UID to block.
Headers
Content-Type: application/json
Body
{
"reason": "Card reported stolen."
}
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "Description of the reason for the action."
}
}
}
204
403
Headers
Content-Type: application/json
Body
{
error: "Specified token UID is already blocked on the digital product."
}
404
Headers
Content-Type: application/json
Body
{
error: "Unknown digital product ID."
}
404
Headers
Content-Type: application/json
Body
{
error: "Unknown token UID for the digital product."
}
Tilføj tokenPOST/products/{digitalProductId}/tokens{?uid}
Tilknytter et armbånd til et digitalt produkt.
Parameter digitalProductId skal benyttes for at udpege det digitale produkt.
Example URI
- digitalProductId
number
(required) Example: 457- uid
string
(required) Example: 8768765876875The token UID to add.
Headers
Content-Type: application/json
Body
{
"reason": "Print@Home ticket replaced with chip"
}
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "Description of the reason for the action."
}
}
}
204
403
Headers
Content-Type: application/json
Body
{
error: "No UID specified."
}
403
Headers
Content-Type: application/json
Body
{
error: "The digital product is invalidated."
}
403
Headers
Content-Type: application/json
Body
{
error: "The digital product already has an active token."
}
403
Headers
Content-Type: application/json
Body
{
error: "Token is active on another digital product."
}
404
Headers
Content-Type: application/json
Body
{
error: "Unknown digital product ID."
}
Erstat tokenPUT/products/{digitalProductId}/tokens/{uid}{?newUid}
Erstatter et aktivt armbånd med et andet.
Example URI
- digitalProductId
number
(required) Example: 457- uid
string
(required) Example: 8768765876875The token to block.
- newUid
string
(required) Example: 8768765876876The token to add.
Headers
Content-Type: application/json
Body
{
"reason": "Chip cannot be read by scanners"
}
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "Description of the reason for the action."
}
}
}
204
403
Headers
Content-Type: application/json
Body
{
error: "No newUid specified."
}
403
Headers
Content-Type: application/json
Body
{
error: "The digital product is invalidated."
}
403
Headers
Content-Type: application/json
Body
{
error: "Specified token UID is already blocked on the digital product."
}
403
Headers
Content-Type: application/json
Body
{
error: "The digital product has more than one active token."
}
403
Headers
Content-Type: application/json
Body
{
error: "New token is active on another digital product."
}
404
Headers
Content-Type: application/json
Body
{
error: "Unknown digital product ID."
}
404
Headers
Content-Type: application/json
Body
{
error: "Unknown token UID for the digital product."
}