Autenticación SDK

API Key merchant

POST /auth/users

Este endpoint permite generar una API key para un merchant.

ℹ️
Este dato será utilizado en el SDK
  curl --location 'https://api.menta.global/auth/users' \
--header 'X-API-KEY: {api_key_customer}' \
--header 'Content-Type: application/json' \
--header 'Authorization: {token_customer}' \
--data-raw '{
  "user": "", 
  "user_type": "MERCHANT",
  "customer_id": "",
  "merchant_id": ""
}'
  {
      "id": "",
      "api_key": "",
      "user": "",
      "user_type": "",
      "merchant_id": "",
      "customer_id": "",
      "create_date": "",
      "update_date": ""
  }