Vault V1 General API Reference
post/v1/get
cURL
curl -sSLX POST 'https://vault.aws.us.pangea.cloud/v1/get' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Get Vault item
POST
https://vault.aws.us.pangea.cloud/v1/getRetrieve details for a key, secret, token, or folder.
post/v1/list
cURL
curl -sSLX POST 'https://vault.aws.us.pangea.cloud/v1/list' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
List
POST
https://vault.aws.us.pangea.cloud/v1/listRetrieve an array of Vault items matching a given filter, including secrets, keys, tokens, and folders, along with their common details.
post/v1/update
cURL
curl -sSLX POST 'https://vault.aws.us.pangea.cloud/v1/update' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Update
POST
https://vault.aws.us.pangea.cloud/v1/updateUpdate information associated with a key, secret, token, or folder.
post/v1/delete
cURL
curl -sSLX POST 'https://vault.aws.us.pangea.cloud/v1/delete' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Delete
POST
https://vault.aws.us.pangea.cloud/v1/deleteDelete a key, secret, token, or folder.
post/v1/export
cURL
curl -sSLX POST 'https://vault.aws.us.pangea.cloud/v1/export' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Export
POST
https://vault.aws.us.pangea.cloud/v1/exportExport a symmetric or asymmetric key marked as exportable when added to Vault.
post/v1/state/change
cURL
curl -sSLX POST 'https://vault.aws.us.pangea.cloud/v1/state/change' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Change state
POST
https://vault.aws.us.pangea.cloud/v1/state/changeChange the state of a version of a Vault key, secret, or token.
Was this article helpful?