Last active
March 14, 2018 06:41
-
-
Save markotom/825ce9992f47fa5b1d3ecc099697959d to your computer and use it in GitHub Desktop.
Revisions
-
markotom revised this gist
Mar 14, 2018 . No changes.There are no files selected for viewing
-
markotom revised this gist
Mar 14, 2018 . 2 changed files with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ { "auth_token": "key_FP3nXcyUyqef8xsZJkbpTjQ", "conekta_client_user_agent": "{\"agent\":\"Conekta JavascriptBindings/0.3.0\"}", "card": { "number": "4242424242424242", This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,3 @@ #!/bin/bash curl -XPOST -H "Content-Type: application/json" -d @payload.json https://api.conekta.io/tokens -
markotom created this gist
May 19, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ { "auth_token": "...", "conekta_client_user_agent": "{\"agent\":\"Conekta JavascriptBindings/0.3.0\"}", "card": { "number": "4242424242424242", "name": "Javier Pedreiro", "exp_year": "2020", "exp_month": "12", "cvc": "123", "address": { "street1": "Calle 123 Int 404", "street2": "Col. Condesa", "city": "Ciudad de Mexico", "state": "Distrito Federal", "zip": "12345", "country": "Mexico" } } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ #!/bin/bash curl -XPOST -H "Content-Type: application/json" -d @payload.json https://api.conekta.io/tokens/create.js