API Docs
DocsGithubSupportMeroku Protocol
  • About
  • API reference
    • Dapp
      • DeleteApp
      • Upload
      • Build
      • Rate
      • SearchById
      • Categories
    • Store
      • Featured
        • Dapps
      • DeleteStore
      • BannedDapps
      • Dapp
      • Title
        • /
    • App
      • Installed
      • InstallUrl
    • O
      • View
      • Download
    • Domainverification
      • GetVerificationId
      • Verify
    • Api
      • V1
        • Dapp
          • Search
          • Autocomplete
  • Specification
  • SDK
    • NodeJS
  • ../Meroku Docs
Powered by GitBook
On this page
  1. API reference
  2. Store

Dapp

PreviousBannedDappsNextTitle

Last updated 2 years ago

Add dapp details which want to be replace for dapp store

put

If a dapp store want to change details of app(allowed only) for only their dapp store. Then they can change the values from here

Path parameters
storeKeystringRequired
dappIdstringRequired
Body
namestringRequired

The name of the developer (from GitHub)

Example: r488it
emailstringRequired

The email of the developer (from Github)

Example: example@email.com
accessTokenstringRequired

The JWT access token of the developer (from Github) for user to server API Calls

Example: ghu_cSB18uvyUKmNaC0adq3aAwIQTRY9U53RgMI
githubIDstringRequired

The GitHub ID of the developer

Example: r4881t
Responses
200
Successful operation
application/json
Responsestring
400
Invalid ID supplied
404
DApp not found
405
Validation exception
put
PUT /store/{storeKey}/dapp/{dappId} HTTP/1.1
Host: api-a.meroku.store
Content-Type: application/json
Accept: */*
Content-Length: 423

{
  "name": "r488it",
  "email": "example@email.com",
  "accessToken": "ghu_cSB18uvyUKmNaC0adq3aAwIQTRY9U53RgMI",
  "githubID": "r4881t",
  "store": {
    "githubId": "reeshi",
    "remove": [
      "image.screenshots.0"
    ],
    "add": {
      "minAge": 13,
      "isForMatureAudience": true,
      "description": "text",
      "tags": [
        "nft"
      ],
      "geoRestrictions": {
        "allowedCountries": [
          "in"
        ],
        "blockedCountries": [
          "ru"
        ]
      },
      "images": {
        "logo": "text",
        "banner": "text",
        "screenshots": [
          {
            "index": 1,
            "value": "text"
          }
        ]
      }
    }
  }
}
text