Comercios

Obtener cuotas disponibles

GET /v1/merchants/{merchant_id}/installments/{acquirer_id}

Este endpoint permite obtener las cuotas disponibles de un comercio específico por adquirencia.

ParámetrosDescripción
merchant_id
  • string
  • Identificador del comercio a consultar
acquirer_id
  • string
  • Identificador del adquirente que se desea consultar
  • [GPS, BANORTE, AMEX]
 curl --request GET \
   --url https://api.menta.global/api/v1/merchants/{merchant_id}/installments/{acquirer_id} \
   --header 'Authorization: Bearer {access_token}'
{
  "id": "string",
  "customer_id": "string",
  "merchant_id": "string",
  "acquirer": "string",
  "enabled": "boolean",
  "data": [
      {
          "brand": "string",
          "number": "integer",
          "financing": "string"
      },
      ...
  ]
}