L'objet Order
représente les informations d'une commande, généralement la commande liée à un Payment
.
Champ | Type | Description |
---|---|---|
id | string | Identifiant Alma de la commande |
created | timestamp | Date de création de la commande sur Alma |
updated | timestamp | Date de dernière mise à jour de la commande sur Alma |
merchant_reference | string | Référence marchand de la commande, permettant de faire le lien entre une commande et un paiement sur Alma |
merchant_url | string | Url de la page du backoffice marchand pour cette commande |
customer_url | string | Url de la page de suivi de la commande destinée au client |
payment | string | Identifiant Alma du paiement correspondant à cette commande |
data | object | Dictionnaire contenant des données arbitraires entrées par le marchand |
comment | string | Commentaire marchand sur la commande |
Exemple d'objet
Order
au format JSON
{
"id": "order_11h4MCc4atnjecmoK6GU6UYGo6qMK6RMLw",
"created": 1552553941,
"merchant_reference": "ref-9676683702228572",
"merchant_url": "https://backoffice.merchant.com/orders/ref-9676683702228572",
"payment": "payment_11h4MEW6jokMbn3ya4sI0scgeauAm41CO4",
"data": {}
}