Skip to main content

application/getApplications

Get a list of the application created by referrer.

It's included only the application_id.

Parameters

NameTypeConstraintsDescription
paramsobject
params.referrerobject
params.referrer.referrer_idstringYour referer_id provided by Etana.

Result

NameTypeConstraintsDescription
resultarray
result[0]object
result[0].application_idstringUnique 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_idstringUnique identifier of an application, use application/start to create a new application, use application/getApplications to get all of your applicationIds.

Errors

CodeMessageDescription
1Error messageError 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"
}
]
}