Country:
/v1/pos/terminals/init
Inicializar terminal
Este endpoint permite verificar que la terminal está lista para poder comenzar a procesar operaciones correctamente.
provider
Valor identificatorio del proveedor de la terminal
data
Objeto agrupador de la información requerida para el proveedor
terminal_id
Id de la terminal
Response Examples
204
204
{}400
400
{
"error_type": "example_string",
"message": "example_string"
}404
404
{
"error_type": "example_string",
"message": "example_string"
}409
409
{
"error_type": "example_string",
"message": "example_string"
}Language
Login required to test API
Code Examples
cURL
curl -X POST "https://api.akua.la/v1/pos/terminals/init" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"data": {}
}''