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

NameTypeDescription

Authorization*

String

User Auth Key obtained from Dash

DappId*

String

DappId

Request Body

NameTypeDescription

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