application/getApplication
Get a complete application data.
It includes all sections data.
Parameters
| Name | Type | Constraints | Description |
|---|---|---|---|
| params | object | ||
| params.referrer | object | ||
| params.referrer.referrer_id | string | Your referer_id provided by Etana. | |
| params.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
| Name | Type | Constraints | Description |
|---|---|---|---|
| result | object | ||
| result.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/getApplication",
"params": {
"referrer": {
"referrer_id": "6172c164750ad6626e6fa16c"
},
"application_id": "6172c164750ad6626e6fa16c"
}
}
Response example
{
"jsonrpc": "2.0",
"id": "1234567890",
"result": {
"application_id": "6172c164750ad6626e6fa16c"
}
}