Comercios

Obtener comercio

GET /v1/merchants/{merchant_id}

Este endpoint permite obtener datos de un comercio específico.

 curl --request GET \
   --url https://api.menta.global/api/v1/merchants/{merchant_id} \
   --header 'Authorization: Bearer {access_token}'
  {
    "id": "string",
    "customer_id": "string",
    "country": "string",
    "status": "string",
    "legal_type": "string",
    "business_name": "string",
    "fantasy_name": "string",
    "representative": {
      "representative_id": {
        "type": "string",
        "number": "string"
      },
      "birth_date": "2019-08-24T14:15:22Z",
      "name": "string",
      "surname": "string"
    },
    "merchant_code": "string",
    "address": {
      "state": "string",
      "city": "string",
      "zip": "string",
      "street": "string",
      "number": "string",
      "floor": "string",
      "apartment": "string"
    },
    "email": "string",
    "phone": "string",
    "activity": "string",
    "category": "string",
    "tax": {
      "id": "string",
      "type": "string"
    },
    "settlement_condition": {
      "transaction_fee": "string",
      "settlement": "string",
      "cbu_or_cvu": "string"
    },
    "create_date": "2019-08-24T14:15:22Z",
    "update_date": "2019-08-24T14:15:22Z"
  }