Comercios

Crear Comercio

POST /v2/merchants

Este endpoint permite crear un comercio asociado a un cliente.

ParámetrosDescripción
customer_id
  • string
  • Identificador del cliente al cual pertenecerá el comercio
country
  • string
  • País del comercio
  • [ARG,MEX]
legal_type
  • string
  • Si es persona física/moral cargar NATURAL_PERSON, si es una entidad jurídica seleccionar LEGAL_ENTITY
  • [NATURAL_PERSON,LEGAL_ENTITY]
business_name
  • string
  • Nombre comercial del comercio
fantasy_name
  • string
  • Nombre de fantasía del comercio
additional_info
  • (opcional)
  • string
  • Información adicional que se le puede agregar al comercio
  • address.
state
  • string
  • Provincia/Estado (Listado de provincias/estados)
  • address.
city
  • string
  • Ciudad
  • address.
zip
  • string
  • Código postal
  • address.
street
  • string
  • Calle
  • address.
number
  • string
  • Número de calle
  • address.
floor
  • (opcional)
  • string
  • Piso del departamento
  • address.
apartment
  • (opcional)
  • string
  • Departamento
  • tax_identification.
type
  • string
  • Tipo de documento del comercio
  • [CUIT,RFC]
  • tax_identification.
number
  • string
  • Numero de documento del comercio
  • representative.
type
  • string
  • Tipo de representante
  • [PRESIDENT, PROXY, OTHER]
  • representative.
name
  • string
  • Nombre del representante
  • representative.
surname
  • string
  • Apellido del representante
  • representative.identification.
type
  • string
  • Tipo de documento del representante
  • [CUIT, RFC]
  • representative.identification.
number
  • string
  • Número de documento del representante
  • representative.
email
  • string
  • Email del representante
  • representative.
phone
  • string
  • Teléfono del representante
  • financial_info.
tax_condition
  • string
  • Condición impositiva del comercio
  • [RESPONSABLE_INSCRIPTO, HABITUALISTA, NO_INSCRIPTO, MONOTRIBUTISTA, EXENTO, NO_CATEGORIZADO, CATEGORIZADO]
  • financial_info.account_info.
cbu_or_cvu
  • string
  • Numero de CBU o CVU
  • [ARG -> CBU o CVU , MEX -> CLABE]
  • financial_info.account_info.account_type.
code
  • string
  • Código de tipo de cuenta
  • [01 -> CAJA DE AHORRO, 02 -> CUENTA CORRIENTE]
  • financial_info.account_info.account_type.
type
  • string
  • Tipo de cuenta
  • [CAJA DE AHORRO, CUENTA CORRIENTE]
ℹ️

Estos datos son provistos por el adquiriente al momento de dar de alta un comercio en su plataforma

Provincias/Estados

Provincias argentinas 🇦🇷
  • BUENOS_AIRES
  • CATAMARCA
  • CHACO
  • CHUBUT
  • CAPITAL_FEDERAL
  • CORRIENTES
  • CORDOBA
  • ENTRE_RIOS
  • FORMOSA
  • JUJUY
  • LA_PAMPA
  • LA_RIOJA
  • MENDOZA
  • MISIONES
  • NEUQUEN
  • RIO_NEGRO
  • SALTA
  • SAN_JUAN
  • SAN_LUIS
  • SANTA_CRUZ
  • SANTA_FE
  • SANTIAGO_DEL_ESTERO
  • TIERRA_DEL_FUEGO
  • TUCUMAN
Estados de México 🇲🇽
  • AGUASCALIENTES
  • BAJA_CALIFORNIA
  • BAJA_CALIFORNIA_SUR
  • CAMPECHE
  • COAHUILA
  • COLIMA
  • CHIAPAS
  • CHIHUAHUA
  • DURANGO
  • DISTRITO_FEDERAL
  • GUANAJUATO
  • GUERRERO
  • HIDALGO
  • JALISCO
  • MEXICO
  • MICHOACAN
  • MORELOS
  • NAYARIT
  • NUEVO_LEON
  • OAXACA
  • PUEBLA
  • QUERETARO
  • QUINTANA_ROO
  • SAN_LUIS_POTOSI
  • SINALOA
  • SONORA
  • TABASCO
  • TAMAULIPAS
  • TLAXCALA
  • VERACRUZ
  • YUCATAN
  • ZACATECAS
 curl --request POST \
  --url https://api.menta.global/api/v2/merchants \
  --header 'Authorization: Bearer {access_token}' \
  --header 'Content-Type: application/json' \
  --data '{
      "customer_id": "string",
      "country": "string",
      "legal_type": "string",
      "business_name": "string",
      "fantasy_name": "string",
      "address":{
          "state": "string",
          "city": "string",
          "zip": "string",
          "street": "string",
          "number": "string",
          "floor": "string",
          "apartment": "string"
      },
      "tax_identification":{
          "type": "string",
          "number": "string"
      },
      "representative":{
          "type": "string",
          "name": "string",
          "surname": "string",
          "identification":{
              "type": "string",
              "number": "string"
          },
          "email": "string",
          "phone": "string"
      },
      "financial_info":{
          "tax_condition": "string",
          "account_info":{
              "cbu_or_cvu": "string",
              "account_type":{
                  "code": "string",
                  "type": "string"
              }
          }
      }
  }'
{
  "merchant_id": "string",
}