Skip to main content

Uploading an app icon

This method allows uploading an application icon.

Key Points to Note:

  • .jpeg and .png files only;
  • file size should not exceed 3 MB;
  • uploaded image size is 512×512 px.

Interaction parameters

POST

https://public-api.rustore.ru/public/v1/application/{packageName}/version/{versionId}/image/icon

AttributeTypeRequiredLocationDescription
Public-TokenstringYesheaderAccess token to Public API Rustore.
packageNamenumberYespathApp ID
versionIdnumberYespathApp version

Form data

AttributeTypeRequiredDescription
filemultipart/form-dataYesFile

Response example

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

Example

curl --location --request POST 'https://public-api.rustore.ru/public/v1/application/com.package.example/version/123/image/icon' \
--header 'Content-Type: application/json' \
--header 'Public-Token: {YOURtoken}' \
--form 'file=@"/Users/User/Downloads/img.jpg"'