Skip to main content

Factors

API Calls

NameDescriptionShortcut
GET: List Factors RequestsThis method can be used to retrieve a list of factors. Description

GET: List Factors

This method can be used to retrieve a list of current Factors

Input

GET /factors

Request headers

x-api-key: shared_key_value
Accept: application/json or application/xml

Response

Headers: Status: 200 OK

Response body

Json Response

{
"factors": [
{
"site": "CETA-GRID",
"weight": "5406"
},
{
"site": "CFP-IST",
"weight": "1019"
},
{
"site": "CIEMAT-LCG2",
"weight": "14595"
}
]
}

XML Response

<root>
<Factor site="CETA-GRID" weight="5406"></Factor>
<Factor site="CFP-IST" weight="1019"></Factor>
<Factor site="CIEMAT-LCG2" weight="14595"></Factor>
</root>