application/getApplications
Get a list of the application created by referrer.
It's included only the application_id.
Parameters
| Name | Type | Constraints | Description |
|---|---|---|---|
| params | object | ||
| params.referrer | object | ||
| params.referrer.referrer_id | string | Your referer_id provided by Etana. |
Result
| Name | Type | Constraints | Description |
|---|---|---|---|
| result | array | ||
| result[0] | object | ||
| result[0].application_id | string | Unique identifier of an application, use application/start to create a new application, use application/getApplications to get all of your applicationIds. | |
| result[1] | object | ||
| result[1].application_id | string | Unique identifier of an application, use application/start to create a new application, use application/getApplications to get all of your applicationIds. |
Errors
| Code | Message | Description |
|---|---|---|
| 1 | Error message | Error description. |
Request example
{
"jsonrpc": "2.0",
"id": "1234567890",
"method": "application/getApplications",
"params": {
"referrer": {
"referrer_id": "6172c164750ad6626e6fa16c"
}
}
}
Response example
{
"jsonrpc": "2.0",
"id": "1234567890",
"result": [
{
"application_id": "6172c164750ad6626e6fa16c"
},
{
"application_id": "6172c164750ad6626e6fa16c"
}
]
}