Last updated 1 day ago
GET /sfp/api/key-value/{key} HTTP/1.1 Host: Authorization: Bearer JWT Accept: */*
The value has been successfully retrieved.
No content
DELETE /sfp/api/key-value/{key} HTTP/1.1 Host: Authorization: Bearer JWT Accept: */*
The key-value pair has been successfully deleted.
POST /sfp/api/key-value HTTP/1.1 Host: Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 29 { "key": "text", "value": "text" }
The key-value pair has been successfully created.
{ "key": "text", "value": "text" }
POST /sfp/api/key-value/upsert HTTP/1.1 Host: Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 29 { "key": "text", "value": "text" }
The key-value pair has been successfully created or updated.
PUT /sfp/api/key-value/{key} HTTP/1.1 Host: Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 16 { "value": "text" }
The value has been successfully updated.