Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
import requests client_id = <YOUR CLIENT ID> public_key = <YOUR CLIENT TOKEN> request = requests.post('https://api.malga.io/v1/tokens', headers={ "X-Client-Id": client_id, "X-Api-Key": publick_key }, json={ "cardHolderName": "JOSE DAS NEVES", "cardNumber": "4019598346009339", "cardCvv": "123", "cardExpirationDate": "12/2026" }) print(request.json().get('tokenId'))
{ "tokenId": "cc0b1e41-2936-45c5-947f-93995ffcdc00" }
Tokenizar
Pode ser tokenizado o cartão e/ou cvv de acordo com a passagem dos atributos
Show child attributes
Created
Identificador do token gerado
Was this page helpful?