Herramientas del sitio


Tabla de Contenidos

API: Self

Obtiene la información sobre el apikey utilizado que incluye los datos del comercio y la aplicación relacionada.

Llamadas al API | Ciclo de cobro


PHP

<?php
 
$apiUrl = 'https://staging.adamspay.com/api/v1/self';
$apiKey = 'tu-api-key';
 
$curl = curl_init();
 
curl_setopt_array($curl,[
 CURLOPT_URL => $apiUrl,
 CURLOPT_HTTPHEADER => ['apikey: '.$apiKey],
 CURLOPT_RETURNTRANSFER => true
 ]);
 
$response = curl_exec($curl);
if( $response ){
  $data = json_decode($response,true);
 
  print_r($data['app']); // Imprimir datos de la aplicación
 
}
else {
  echo 'curl_error: ',curl_error($curl);
}
curl_close($curl);

Python

import http.client
import json
import pprint
 
apiKey = "tu-api-key"
host = "staging.adamspay.com"
path = "/api/v1/self"
headers = {"apikey": apiKey}
 
conn = http.client.HTTPSConnection(host)
conn.request("GET", path , "", headers)
data = conn.getresponse().read().decode("utf-8")
 
response = json.JSONDecoder().decode(data)
 
pp = pprint.PrettyPrinter(indent=2)
if "app" in response:
	print("Informacion de la APP")
	pp.pprint(response["app"])
else:
	print("# Error")
	if "meta" in response:
		pp.pprint(response["meta"])

adamspay.com | Comercios | +595(994)622020 | info@adamspay.com
Inicio | FAQ | Integración | API | Condiciones de uso