Skip to main content

App access information

This method returns a list of all accesses granted by application.

Interaction parameters

GET https://public-api.rustore.ru/public/v1/application/{packageName}/developer

AttributeTypeRequiredLocationDescriptionExample
Public-TokenstringYesHeaderAccess token to API RuStore.N/A
packageNamestringYespathApp package namecom.myapp.example
pageSizenumberNoqueryNumber of users and their accesses per page.Default 20, min - 1, max - 100
pageTokenstringNoqueryThe API includes a pageToken element in the response if the access list continues to another page. Use the value obtained from the previous request.Nzk0MjQ3Mzcw

Response example

AttributeTypeRequiredDescriptionExample
codestringYesResponse codeerror/OK
messagestringNoDecoded response codeN/A
body{}objectYesN/AN/A
timestamptimestamptzYesResponse time2022-07-08T13:24:41.8328711+03:00

body

AttributeTypeRequiredDescriptionExample
content[]massiveYesArray with a list of users and passwords.
pageTokenNoNoThe API includes a pageToken element in the response if the access list continues to another page.Nzk0MjQ3Mzcw

body.content[]

AttributeTypeRequiredDescriptionExample
devVkIdstringYesvkid161930531
rolestringYesaccess type• OWNER;
• NON_RESIDENT_OWNER;
• INDIVIDUAL_OWNER;
• ADMIN;
• RELEASE_MANAGER;
• DEV;
• FINANCIAL_MANAGER;
• SUPPORT.
firstNamestringYesUser nameJohn
lastNamestringYesLast nameDoe

Possible errors

codemessageDescriptionSolution
400Incorrect parameter roleSuch a role does not existMake sure that the specified role is available.

Request example

curl --location 'https://public-api.rustore.ru/public/v1/application/com.package.example/developer?pageSize=20' \
--header 'Public-Token: {YOURtoken}'

Response example

{
"code": "OK",
"message": null,
"body": {
"content": [
{
"devVkId": "1111111111",
"role": "DEV",
"firstName": "John",
"lastName": "Smith"
},
{
"devVkId": "0000000000",
"role": "OWNER",
"firstName": "Mike",
"lastName": "Brown"
}
],
"pageToken": null
},
"timestamp": "2024-03-25T20:48:23.584572102+03:00"
}