Data Sources
Providing a Data Source
GET METHOD
https://clique.test.api?address={userAddress}?authToken{authenticationToken{
"code": 200,
"msg": "success",
"timestamp": "2024-01-25T12:00:00Z",
"data": [
{
"fieldName": "exampleField1",
"value": 123,
"valueType": "integer"
},
{
"fieldName": "exampleField2",
"value": true,
"valueType": "bool"
},
{
"fieldName": "exampleField3",
"value": "exampleString",
"valueType": "string"
}
// ... additional objects can be added here
]
}Last updated