Update a RMA by id.

PATCH /api/v2/savs/{id}

Path parameters

  • id integer Required

    RMA's id

Body Required

  • status string Required

    RMA's status ('En attente de validation' / 'Validé' / 'Rejeté' / 'Résolu' / 'Colis envoyé' / 'Bloqué iCloud/Gmail' / 'En cours de réparation chez le vendeur' / 'Annulé par l'acheteur' / 'Bloqué par code clavier' / 'Résolu par réparation' / 'Résolu par avoir' / 'Résolu par échange' / 'Validé, retour usine' / 'Réponse client nécessaire' / 'Réponse usine nécessaire')

  • fixType string

    RMA's fixType

  • RMA's fixComment

  • RMA's exchange IMEI/Serial Number, this field is mandatory when you set the status to 'Résolu par échange'

  • RMA's tracking number

  • shipper string

    RMA's shipper (DHL Express'DHL Netherland','FedEx','UPS','Chronopost','DPD International','DPD France','GLS','TNT France','TNT International','DB Schenker','Kuehne + Nagel','Bpost','Colissimo','DHL Germany','PostNL International')

  • comment string

    RMA's new comment

  • visibility boolean

    RMA's customer visibility ('public' / 'private')

Responses

  • Update a RMA by id

    Hide response attributes Show response attributes object
  • Bad request

    Hide response attributes Show response attributes object
  • Internal server error

    Hide response attributes Show response attributes object
PATCH /api/v2/savs/{id}
curl \
 -X PATCH https://bi.agora.place/api/v2/savs/{id} \
 -H "apikey: $API_KEY" \
 -d '{"status":"string","fixType":"string","fixComment":"string","exchangeIdentifier":"string","trackingNumber":"string","shipper":"string","comment":"string","visibility":true}'
Request example
{
  "status": "string",
  "fixType": "string",
  "fixComment": "string",
  "exchangeIdentifier": "string",
  "trackingNumber": "string",
  "shipper": "string",
  "comment": "string",
  "visibility": true
}
Request examples
{
  "status": "string",
  "fixType": "string",
  "fixComment": "string",
  "exchangeIdentifier": "string",
  "trackingNumber": "string",
  "shipper": "string",
  "comment": "string",
  "visibility": true
}
Response examples (200)
{
  "code": 200,
  "msg": "Success"
}
Response examples (200)
{
  "code": 200,
  "msg": "Success"
}
Response examples (400)
{
  "code": 400,
  "msg": "Bad Request"
}
Response examples (400)
{
  "code": 400,
  "msg": "Bad Request"
}
Response examples (500)
{
  "code": 500,
  "msg": "Internale Server Error"
}
Response examples (500)
{
  "code": 500,
  "msg": "Internale Server Error"
}