Featured
Fetch featured sections of registry OR if you provide storeKey in query it will fetch featured sections from store.
Unique Id of a particular store. provide only if you want to fetch feature section form a particular store.
Successful operation
Invalid status value
GET /store/featured HTTP/1.1
Host: api-a.meroku.store
Accept: */*
[
{
"title": "Our Curated list",
"description": "This is a curated list of dApps that we think you will like. Our curators have used these dApps and found them worthy of your attention.",
"key": "curated-list-1",
"dappIds": [
"example.store.dapp"
]
}
]This is to delete a featured section to dapp
The name of the developer (from GitHub)
r488itThe JWT access token of the developer (from Github) for user to server API Calls
ghu_cSB18uvyUKmNaC0adq3aAwIQTRY9U53RgMIThe GitHub ID of the developer
r4881tKey of the featured section which will be deleted.
curated-listUnique Id of a particular store. provide only if you want to delete feature section in the particular store.
example.dappstoresuccessful operation
Invalid ID supplied
DApp not found
Validation exception
POST /store/featured HTTP/1.1
Host: api-a.meroku.store
Content-Type: application/json
Accept: */*
Content-Length: 179
{
"name": "r488it",
"email": "[email protected]",
"accessToken": "ghu_cSB18uvyUKmNaC0adq3aAwIQTRY9U53RgMI",
"githubID": "r4881t",
"sectionKey": "curated-list",
"storeKey": "example.dappstore"
}textThis is to add a featured section to dapp
The name of the developer (from GitHub)
r488itThe JWT access token of the developer (from Github) for user to server API Calls
ghu_cSB18uvyUKmNaC0adq3aAwIQTRY9U53RgMIThe GitHub ID of the developer
r4881tTitle of the Featured Section. This will be displayed on the dApp Store. It should be simple and clear.
Our Curated listDescription of the Featured Section. This will be displayed on the dApp Store. It should be simple and clear.
This is a curated list of dApps that we think you will like. Our curators have used these dApps and found them worthy of your attention.List of dApp IDs that are part of this featured section. The dApp IDs should be the same as the ones in the dApp Store's dApps list. All the dApps in this list should be published.
example.store.dappUnique Id of a particular store. provide only if you want to add feature section in the particular store.
example.dappstoresuccessful operation
Invalid ID supplied
DApp not found
Validation exception
PUT /store/featured HTTP/1.1
Host: api-a.meroku.store
Content-Type: application/json
Accept: */*
Content-Length: 371
{
"name": "r488it",
"email": "[email protected]",
"accessToken": "ghu_cSB18uvyUKmNaC0adq3aAwIQTRY9U53RgMI",
"githubID": "r4881t",
"sectionTitle": "Our Curated list",
"description": "This is a curated list of dApps that we think you will like. Our curators have used these dApps and found them worthy of your attention.",
"dappIds": [
"example.store.dapp"
],
"storeKey": "example.dappstore"
}textLast updated