# Obtener la configuración actual del sistema.
# GET /config
no parameters
curl -X GET "https://suscripcion.expreso.ec/api/v1/config" -H "accept: application/json" -H "X-CSRF-TOKEN: "
1
2
3
4
2
3
4
# Response
{
"data": {
"cxense_site_id": "9222359539744780886",
"cxense_persisted_query_id": "98566aba67c0ea55114e05c808290c8af30b4935",
"navigation_roles": [],
"walls": {
"softwall": 10,
"loginwall": 10,
"middlewall": 25,
"paywall": 15,
"incognitowall": 1,
"adblockerwall": 1
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Response headers
access-control-allow-credentials: true
access-control-allow-methods: GET, POST, PUT, DELETE, OPTIONS
access-control-allow-origin: https://suscripcion.expreso.ec
cache-control: no-cache, private
connection: keep-alive
content-type: application/json
date: Thu, 07 May 2020 18:07:11 GMT
server: nginx
strict-transport-security: max-age=31536000; includeSubDomains
transfer-encoding: chunked
x-powered-by: PHP/7.3.13
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13