Skip to main content

Update

PUT /services/
Send only the fields you want to update.
curl -X PUT https://api.midasprotocol.org/services/service-uuid \
  -H "Authorization: Bearer pp_your_key" \
  -H "Content-Type: application/json" \
  -d '{ "priceAmount": 8 }'

Delete

DELETE /services/
Performs a soft delete (sets isActive: false).
curl -X DELETE https://api.midasprotocol.org/services/service-uuid \
  -H "Authorization: Bearer pp_your_key"
Response: { "id": "uuid", "deleted": true }