Konfiwear V2 is here — redesigned from the ground up.See what's new

Scopes & Permissions

API keys are scoped to specific resources and access levels. Scopes are immutable after creation — to change scopes, revoke the old key and create a new one.

ScopeGrants Access To
read:productsGET /products, GET /products/:id
write:productsPOST, PUT, DELETE /products (future)
read:designsGET /designs, GET /designs/:id
read:quotesGET /quotes, GET /quotes/:id
write:quotesPOST /quotes
read:colorsGET /colors
read:fabricsGET /fabrics
read:fontsGET /fonts

Shorthand scopes: read grants all read scopes, write grants all write scopes (implies read), full grants everything.

Example key scopes (JSON)
{
  "scopes": [
    "read:products",
    "read:quotes",
    "write:quotes"
  ]
}