Ir al contenido principal
Todas las coleccionesAPI
8-Ajustes extras (Settings)
8-Ajustes extras (Settings)

8-Ajustes extras (Settings)

A
Escrito por Axel Candia
Actualizado hace más de una semana

Definición de settings en un envío.

Estos settings se pueden poner en los envíos. Si se requiere especificaciones especiales se tiene que agregar al momento de la creación setting:[<id del setting>].

Para poder ver todos los diferentes settings que están abajo a continuación puede utilizar el siguiente Curl

curl -X GET "https://api-dev.moova.io/b2b/shipping-setting-options?filters=PickupSignature" -H "accept: application/json"

Response Body

{
  "data": [
    {
      "id": 1,
      "name": "PickupSignature",
      "apply_to_all": 0,
      "description": "In order to pick up this shipping the sender must provide a signature",
      "message": null,
      "created_at": "2021-01-05 19:01:27",
      "updated_at": "2021-01-05 19:01:27",
      "deleted_at": null
    },
    {
      "id": 2,
      "name": "PickupPhoto",
      "apply_to_all": 0,
      "description": "In order to pick up this shipping is mandatory to take a picture of the package",
      "message": null,
      "created_at": "2021-01-05 19:01:27",
      "updated_at": "2021-01-05 19:01:27",
      "deleted_at": null
    },
    {
      "id": 3,
      "name": "SignaturePhoto",
      "apply_to_all": 1,
      "description": "Instead of ask for a signature, take a picture of the package.",
      "message": "Debido al coronavirus, en vez de solicitar la firma, por favor sacale una foto a la puerta del domicilio donde estás haciendo la entrega.",
      "created_at": "2021-01-05 19:01:27",
      "updated_at": "2021-01-05 19:01:27",
      "deleted_at": null
    },
    {
      "id": 4,
      "name": "DeliveryUserIdentification",
      "apply_to_all": 1,
      "description": "Request user identification when shipping is delivered",
      "message": "Documento de identidad",
      "created_at": "2021-01-05 19:01:27",
      "updated_at": "2021-01-05 19:01:27",
      "deleted_at": null
    },
    {
      "id": 5,
      "name": "BackAndForth",
      "apply_to_all": 0,
      "description": "Back and forth shipping",
      "message": null,
      "created_at": "2021-01-05 19:01:27",
      "updated_at": "2021-01-05 19:01:27",
      "deleted_at": null
    },
    {
      "id": 6,
      "name": "UpdateDeliveredItems",
      "apply_to_all": 0,
      "description": "Once the shipping is delivered, update the delivered items",
      "message": null,
      "created_at": "2021-01-05 19:01:27",
      "updated_at": "2021-01-05 19:01:27",
      "deleted_at": null
    },
    {
      "id": 7,
      "name": "DeliverySurvey",
      "apply_to_all": 0,
      "description": "Displays company survey when shipping is delivered",
      "message": "Por favor completa la siguiente encuesta con el destinatario",
      "created_at": "2021-01-05 19:01:29",
      "updated_at": "2021-01-05 19:01:29",
      "deleted_at": null
    },
    {
      "id": 8,
      "name": "OnlyDeliverToAuthorized",
      "apply_to_all": 0,
      "description": "Only deliver the shipping to authorized people",
      "message": null,
      "created_at": "2021-05-04 22:18:23",
      "updated_at": "2021-05-04 22:18:23",
      "deleted_at": null
    },
    {
      "id": 9,
      "name": "ScanReceiverId",
      "apply_to_all": 0,
      "description": "When shipping is delivered, scan the receiver identification",
      "message": null,
      "created_at": "2021-05-10 13:01:04",
      "updated_at": "2021-05-27 14:08:25",
      "deleted_at": null
    },
    {
      "id": 10,
      "name": "ViaWarehouse",
      "apply_to_all": 0,
      "description": "The shipping has to be send to a warehouse before to be delivered to the addressee.",
      "message": null,
      "created_at": "2022-03-31 19:08:24",
      "updated_at": "2022-03-31 19:08:24",
      "deleted_at": null
    }
  ],
  "pagination": {
    "total": 10,
    "limit": 500,
    "page": 0
  }
}

La documentación formal de la API la encontrarás en swagger aquí

¿Ha quedado contestada tu pregunta?