Update Pin status
This allows Pin status to be updated. The weightage for this API is 10
API Specification
Update Pin status
POST
https://api.krypcore.com/api/v0/storagemanageripfs/updatePinStatus
This allows Pin status to be updated to false under the given instance.
Headers
Name
Type
Description
Authorization*
String
User Auth Key obtained from Dash
DappId*
String
DappId
Request Body
Name
Type
Description
id*
string
storage ID from Dashboard
{
"Data": null,
"Message": "pin status updated successfully",
"Status": "SUCCESS"
}
Take a look at how you might call this method using our official libraries, or via curl
:
curl --location --request POST 'https://api.krypcore.com/api/v0/storagemanageripfs/updatePinStatus' \
--header 'Authorization: xxxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "string"
}'
Last updated
Was this helpful?