curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/secrets \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"secrets": [
{
"id": 123,
"name": "<string>",
"description": "<string>",
"created": "2023-11-07T05:31:56Z",
"createdByUser": {
"id": 123,
"name": "<string>",
"username": "<string>",
"photo": "<string>"
}
}
]
}
Retrieve all secrets.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/secrets \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"secrets": [
{
"id": 123,
"name": "<string>",
"description": "<string>",
"created": "2023-11-07T05:31:56Z",
"createdByUser": {
"id": 123,
"name": "<string>",
"username": "<string>",
"photo": "<string>"
}
}
]
}
Organization ID
OK
The response is of type object
.