See the API's various operations for details on their request parameters and response data.
You can also run this API with a Postman collection.
Operation | Method | Endpoint |
---|---|---|
Authorization | ||
Modify the default data access policy | PUT | /auth/database |
List permission groups | GET | /auth/groups |
Get a permission group | GET | /auth/groups/{groupId} |
Reauthorize a namespace | PUT | /auth/namespaces/{namespaceId} |
Initialize | ||
Get the EdgeKV initialization status | GET | /initialize |
Initialize EdgeKV | PUT | /initialize |
Namespaces and data | ||
List namespaces | GET | /networks/{network}/namespaces |
Create a namespace | POST | /networks/{network}/namespaces |
Delete namespace | DELETE | /networks/{network}/namespaces/{namespaceId} |
Get namespace details | GET | /networks/{network}/namespaces/{namespaceId} |
Update namespace details | PUT | /networks/{network}/namespaces/{namespaceId} |
List groups within a namespace | GET | /networks/{network}/namespaces/{namespaceId}/groups |
List items within a group | GET | /networks/{network}/namespaces/{namespaceId}/groups/{groupId} |
Delete an item | DELETE | /networks/{network}/namespaces/{namespaceId}/groups/{groupId}/items/{itemId} |
Read an item | GET | /networks/{network}/namespaces/{namespaceId}/groups/{groupId}/items/{itemId} |
Write an item | PUT | /networks/{network}/namespaces/{namespaceId}/groups/{groupId}/items/{itemId} |
Access tokens | ||
List access tokens | GET | /tokens |
Create an access token | POST | /tokens |
Revoke an access token | DELETE | /tokens/{tokenName} |
Download an access token | GET | /tokens/{tokenName} |
Refresh an access token | POST | /tokens/{tokenName}/refresh |