Stores and deletes private keys.
Last updated 2 years ago
The keys must be 32 characters and Base64 encoded. The must be unique.
/frost/private_key
curl -L \ --request POST \ --url '//frost/private_key' \ --header 'x-api-key: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "key_id": "text", "private_key": "text" }'
{ "request": { "request_uuid": "text", "request_name": "text", "request_verb": "text", "response_eta": "text", "created_at": "text", "satellite_id": "text", "request_status": { "status_code": null, "status_name": "text" } } }
curl -L \ --request DELETE \ --url '//frost/private_key' \ --header 'x-api-key: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "key_id": "text" }'