/licenses
GET https://api.abitmedia.app/administration/v1/licenses
Listado de licencias
Autorizaciones
bearer: {accessToken}
Ejemplos de código
JavaScript PHP Railsvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.abitmedia.app/administration/v1/licenses", false);
// Make sure you set the appropriate headers
xmlHttp.setRequestHeader("Header Key", "Header Value");
xmlHttp.send(null);
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.abitmedia.app/administration/v1/licenses");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// Make sure you set the nessary headers as a $headers array
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
uri = URI.parse("https://api.abitmedia.app/administration/v1/licenses")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
# Make sure you set the appropriate headers
request["header"] = "header value"
response = http.request(request)
Respuesta
200:application/json
{
"success": true,
"status": 200,
"message": "Listado de licencias",
"data":
[
{
"id": 1,
"applicationId": 1,
"name": "FacturaSoft básico",
"description": "Gestione su empresa con facturación electrónica",
"modules": {1, 2, 3},
"settings":[
{
"id": 1,
"countryId": 1,
"timePeriodId": 1,
"isFree": false,
"price": "15.000000",
"taxId": 1
}
],
"parameters": {
"key1": "value1",
"key2": "value2",
},
"createdAt": "2024-01-01 17:50:01",
"updateAt": "2024-01-01 17:50:01"
}
]
}
"success": true,
"status": 200,
"message": "Listado de licencias",
"data":
[
{
"id": 1,
"applicationId": 1,
"name": "FacturaSoft básico",
"description": "Gestione su empresa con facturación electrónica",
"modules": {1, 2, 3},
"settings":[
{
"id": 1,
"countryId": 1,
"timePeriodId": 1,
"isFree": false,
"price": "15.000000",
"taxId": 1
}
],
"parameters": {
"key1": "value1",
"key2": "value2",
},
"createdAt": "2024-01-01 17:50:01",
"updateAt": "2024-01-01 17:50:01"
}
]
}