{ "info": { "_postman_id": "a3305ce5-bf46-4f3c-89ff-8baf0d5efe67", "name": "Kinde Management API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": "Kinde Management API - manage users, organizations, roles, permissions, feature flags, applications, connections, APIs, subscribers, properties, webhooks, and billing." }, "auth": { "type": "bearer", "bearer": [ { "key": "token", "value": "{{bearerToken}}", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://your_kinde_subdomain.kinde.com", "type": "string" }, { "key": "bearerToken", "value": "", "type": "string" } ], "item": [ { "name": "API Keys", "item": [ { "name": "Get API keys", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/api_keys", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "api_keys" ] } }, "response": [] }, { "name": "Create API key", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/api_keys", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "api_keys" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get API key", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/api_keys/:key_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "api_keys", ":key_id" ], "variable": [ { "key": "key_id", "value": "" } ] } }, "response": [] }, { "name": "Rotate API key", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/api_keys/:key_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "api_keys", ":key_id" ], "variable": [ { "key": "key_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete API key", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/api_keys/:key_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "api_keys", ":key_id" ], "variable": [ { "key": "key_id", "value": "" } ] } }, "response": [] }, { "name": "Verify API key", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/api_keys/verify", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "api_keys", "verify" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "APIs", "item": [ { "name": "Get APIs", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis" ] } }, "response": [] }, { "name": "Create API", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get API", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id" ], "variable": [ { "key": "api_id", "value": "" } ] } }, "response": [] }, { "name": "Delete API", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id" ], "variable": [ { "key": "api_id", "value": "" } ] } }, "response": [] }, { "name": "Get API scopes", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/scopes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "scopes" ], "variable": [ { "key": "api_id", "value": "" } ] } }, "response": [] }, { "name": "Create API scope", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/scopes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "scopes" ], "variable": [ { "key": "api_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get API scope", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "scopes", ":scope_id" ], "variable": [ { "key": "api_id", "value": "" }, { "key": "scope_id", "value": "" } ] } }, "response": [] }, { "name": "Update API scope", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "scopes", ":scope_id" ], "variable": [ { "key": "api_id", "value": "" }, { "key": "scope_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete API scope", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "scopes", ":scope_id" ], "variable": [ { "key": "api_id", "value": "" }, { "key": "scope_id", "value": "" } ] } }, "response": [] }, { "name": "Authorize API applications", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/applications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "applications" ], "variable": [ { "key": "api_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Add scope to API application", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/applications/:application_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "applications", ":application_id", "scopes", ":scope_id" ], "variable": [ { "key": "api_id", "value": "" }, { "key": "application_id", "value": "" }, { "key": "scope_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete API application scope", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/apis/:api_id/applications/:application_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "apis", ":api_id", "applications", ":application_id", "scopes", ":scope_id" ], "variable": [ { "key": "api_id", "value": "" }, { "key": "application_id", "value": "" }, { "key": "scope_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Applications", "item": [ { "name": "Get applications", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications" ] } }, "response": [] }, { "name": "Create application", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get application", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id" ], "variable": [ { "key": "application_id", "value": "" } ] } }, "response": [] }, { "name": "Update Application", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id" ], "variable": [ { "key": "application_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete application", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id" ], "variable": [ { "key": "application_id", "value": "" } ] } }, "response": [] }, { "name": "Get connections", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id/connections", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id", "connections" ], "variable": [ { "key": "application_id", "value": "" } ] } }, "response": [] }, { "name": "Enable connection", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id", "connections", ":connection_id" ], "variable": [ { "key": "application_id", "value": "" }, { "key": "connection_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Remove connection", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id", "connections", ":connection_id" ], "variable": [ { "key": "application_id", "value": "" }, { "key": "connection_id", "value": "" } ] } }, "response": [] }, { "name": "Get property values", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id/properties", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id", "properties" ], "variable": [ { "key": "application_id", "value": "" } ] } }, "response": [] }, { "name": "Update property", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id/properties/:property_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id", "properties", ":property_key" ], "variable": [ { "key": "application_id", "value": "" }, { "key": "property_key", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update application tokens", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:application_id/tokens", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":application_id", "tokens" ], "variable": [ { "key": "application_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Billing Entitlements", "item": [ { "name": "Get billing entitlements", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/billing/entitlements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "billing", "entitlements" ] } }, "response": [] } ] }, { "name": "Billing Agreements", "item": [ { "name": "Get billing agreements", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/billing/agreements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "billing", "agreements" ] } }, "response": [] }, { "name": "Create billing agreement", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/billing/agreements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "billing", "agreements" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Billing Meter Usage", "item": [ { "name": "Create meter usage record", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/billing/meter_usage", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "billing", "meter_usage" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Business", "item": [ { "name": "Get business", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/business", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "business" ] } }, "response": [] }, { "name": "Update business", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/business", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "business" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Industries", "item": [ { "name": "Get industries", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/industries", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "industries" ] } }, "response": [] } ] }, { "name": "Timezones", "item": [ { "name": "Get timezones", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/timezones", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "timezones" ] } }, "response": [] } ] }, { "name": "Callbacks", "item": [ { "name": "List Callback URLs", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_redirect_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_redirect_urls" ], "variable": [ { "key": "app_id", "value": "" } ] } }, "response": [] }, { "name": "Add Redirect Callback URLs", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_redirect_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_redirect_urls" ], "variable": [ { "key": "app_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Replace Redirect Callback URLs", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_redirect_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_redirect_urls" ], "variable": [ { "key": "app_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Callback URLs", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_redirect_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_redirect_urls" ], "variable": [ { "key": "app_id", "value": "" } ] } }, "response": [] }, { "name": "List logout URLs", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_logout_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_logout_urls" ], "variable": [ { "key": "app_id", "value": "" } ] } }, "response": [] }, { "name": "Add logout redirect URLs", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_logout_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_logout_urls" ], "variable": [ { "key": "app_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Replace logout redirect URls", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_logout_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_logout_urls" ], "variable": [ { "key": "app_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Logout URLs", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/applications/:app_id/auth_logout_urls", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "applications", ":app_id", "auth_logout_urls" ], "variable": [ { "key": "app_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Connected Apps", "item": [ { "name": "Get Connected App URL", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connected_apps/auth_url", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connected_apps", "auth_url" ] } }, "response": [] }, { "name": "Get Connected App Token", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connected_apps/token", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connected_apps", "token" ] } }, "response": [] }, { "name": "Revoke Connected App Token", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connected_apps/revoke", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connected_apps", "revoke" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Connections", "item": [ { "name": "Get connections", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connections", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connections" ] } }, "response": [] }, { "name": "Create Connection", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connections", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connections" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Connection", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connections", ":connection_id" ], "variable": [ { "key": "connection_id", "value": "" } ] } }, "response": [] }, { "name": "Replace Connection", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connections", ":connection_id" ], "variable": [ { "key": "connection_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update Connection", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connections", ":connection_id" ], "variable": [ { "key": "connection_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Connection", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "connections", ":connection_id" ], "variable": [ { "key": "connection_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Directories", "item": [ { "name": "Get SCIM directories", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/directories", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "directories" ] } }, "response": [] }, { "name": "Create SCIM directory", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/directories", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "directories" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get SCIM directory", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/directories/:directory_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "directories", ":directory_id" ], "variable": [ { "key": "directory_id", "value": "" } ] } }, "response": [] }, { "name": "Update SCIM directory", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/directories/:directory_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "directories", ":directory_id" ], "variable": [ { "key": "directory_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete SCIM directory", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/directories/:directory_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "directories", ":directory_id" ], "variable": [ { "key": "directory_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Environments", "item": [ { "name": "Get environment", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment" ] } }, "response": [] }, { "name": "List Environment Feature Flags", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment/feature_flags", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment", "feature_flags" ] } }, "response": [] }, { "name": "Delete Environment Feature Flag Overrides", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment/feature_flags", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment", "feature_flags" ] } }, "response": [] }, { "name": "Update Environment Feature Flag Override", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment/feature_flags/:feature_flag_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment", "feature_flags", ":feature_flag_key" ], "variable": [ { "key": "feature_flag_key", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Environment Feature Flag Override", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment/feature_flags/:feature_flag_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment", "feature_flags", ":feature_flag_key" ], "variable": [ { "key": "feature_flag_key", "value": "" } ] } }, "response": [] }, { "name": "Read logo details", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment/logos", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment", "logos" ] } }, "response": [] }, { "name": "Add logo", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment/logos/:type", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment", "logos", ":type" ], "variable": [ { "key": "type", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete logo", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment/logos/:type", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment", "logos", ":type" ], "variable": [ { "key": "type", "value": "" } ] } }, "response": [] }, { "name": "Get environment passkey settings", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/passkey", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "passkey" ] } }, "response": [] }, { "name": "Update environment passkey settings", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/passkey", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "passkey" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Environment variables", "item": [ { "name": "Get environment variables", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment_variables", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment_variables" ] } }, "response": [] }, { "name": "Create environment variable", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment_variables", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment_variables" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get environment variable", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment_variables/:variable_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment_variables", ":variable_id" ], "variable": [ { "key": "variable_id", "value": "" } ] } }, "response": [] }, { "name": "Update environment variable", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment_variables/:variable_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment_variables", ":variable_id" ], "variable": [ { "key": "variable_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete environment variable", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/environment_variables/:variable_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "environment_variables", ":variable_id" ], "variable": [ { "key": "variable_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Feature Flags", "item": [ { "name": "Create Feature Flag", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/feature_flags", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "feature_flags" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Replace Feature Flag", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/feature_flags/:feature_flag_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "feature_flags", ":feature_flag_key" ], "variable": [ { "key": "feature_flag_key", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Feature Flag", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/feature_flags/:feature_flag_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "feature_flags", ":feature_flag_key" ], "variable": [ { "key": "feature_flag_key", "value": "" } ] } }, "response": [] } ] }, { "name": "Identities", "item": [ { "name": "Get identity", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/identities/:identity_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "identities", ":identity_id" ], "variable": [ { "key": "identity_id", "value": "" } ] } }, "response": [] }, { "name": "Update identity", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/identities/:identity_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "identities", ":identity_id" ], "variable": [ { "key": "identity_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete identity", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/identities/:identity_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "identities", ":identity_id" ], "variable": [ { "key": "identity_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Organizations", "item": [ { "name": "Get organization invites", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization/:org_code/invites", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization", ":org_code", "invites" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Create organization invite", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization/:org_code/invites", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization", ":org_code", "invites" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get organization invite", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization/:org_code/invites/:invite_code", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization", ":org_code", "invites", ":invite_code" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "invite_code", "value": "" } ] } }, "response": [] }, { "name": "Delete organization invite", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization/:org_code/invites/:invite_code", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization", ":org_code", "invites", ":invite_code" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "invite_code", "value": "" } ] } }, "response": [] }, { "name": "Get organization", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization" ] } }, "response": [] }, { "name": "Create organization", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get organizations", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations" ] } }, "response": [] }, { "name": "Update Organization", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization/:org_code", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization", ":org_code" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Organization", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization/:org_code", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization", ":org_code" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Get organization users", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Add Organization Users", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update Organization Users", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "List Organization User Roles", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/roles", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "roles" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Add Organization User Role", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/roles", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "roles" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Organization User Role", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/roles/:role_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "roles", ":role_id" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" }, { "key": "role_id", "value": "" } ] } }, "response": [] }, { "name": "List organization role users", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/roles/:role_id/users", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "roles", ":role_id", "users" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "role_id", "value": "" } ] } }, "response": [] }, { "name": "List Organization User Permissions", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/permissions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "permissions" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Add Organization User Permission", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/permissions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "permissions" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Organization User Permission", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/permissions/:permission_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "permissions", ":permission_id" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" }, { "key": "permission_id", "value": "" } ] } }, "response": [] }, { "name": "Remove Organization User", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Add scope to organization user api", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/apis/:api_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "apis", ":api_id", "scopes", ":scope_id" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" }, { "key": "api_id", "value": "" }, { "key": "scope_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete scope from organization user API", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/apis/:api_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "apis", ":api_id", "scopes", ":scope_id" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" }, { "key": "api_id", "value": "" }, { "key": "scope_id", "value": "" } ] } }, "response": [] }, { "name": "Get an organization user's MFA configuration", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/mfa", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "mfa" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Reset all organization MFA for a user", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/mfa", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "mfa" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Reset specific organization MFA for a user", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/users/:user_id/mfa/:factor_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "users", ":user_id", "mfa", ":factor_id" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "user_id", "value": "" }, { "key": "factor_id", "value": "" } ] } }, "response": [] }, { "name": "List Organization Feature Flags", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/feature_flags", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "feature_flags" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Delete Organization Feature Flag Overrides", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/feature_flags", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "feature_flags" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Update Organization Feature Flag Override", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/feature_flags/:feature_flag_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "feature_flags", ":feature_flag_key" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "feature_flag_key", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Organization Feature Flag Override", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/feature_flags/:feature_flag_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "feature_flags", ":feature_flag_key" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "feature_flag_key", "value": "" } ] } }, "response": [] }, { "name": "Update Organization Property value", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/properties/:property_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "properties", ":property_key" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "property_key", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Organization Property Values", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/properties", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "properties" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Update Organization Property values", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/properties", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "properties" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Replace Organization MFA Configuration", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/mfa", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "mfa" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get organization passkey settings", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/passkey", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "passkey" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Update organization passkey settings", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/passkey", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "passkey" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete organization handle", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organization/:org_code/handle", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organization", ":org_code", "handle" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Read organization logo details", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/logos", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "logos" ], "variable": [ { "key": "org_code", "value": "" } ] } }, "response": [] }, { "name": "Add organization logo", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/logos/:type", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "logos", ":type" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "type", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete organization logo", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/logos/:type", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "logos", ":type" ], "variable": [ { "key": "org_code", "value": "" }, { "key": "type", "value": "" } ] } }, "response": [] }, { "name": "Get connections", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:organization_code/connections", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":organization_code", "connections" ], "variable": [ { "key": "organization_code", "value": "" } ] } }, "response": [] }, { "name": "Enable connection", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:organization_code/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":organization_code", "connections", ":connection_id" ], "variable": [ { "key": "organization_code", "value": "" }, { "key": "connection_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Remove connection", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:organization_code/connections/:connection_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":organization_code", "connections", ":connection_id" ], "variable": [ { "key": "organization_code", "value": "" }, { "key": "connection_id", "value": "" } ] } }, "response": [] }, { "name": "Update organization session configuration", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/organizations/:org_code/sessions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "organizations", ":org_code", "sessions" ], "variable": [ { "key": "org_code", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "MFA", "item": [ { "name": "Replace MFA Configuration", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/mfa", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "mfa" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Permissions", "item": [ { "name": "List Permissions", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/permissions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "permissions" ] } }, "response": [] }, { "name": "Create Permission", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/permissions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "permissions" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update Permission", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/permissions/:permission_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "permissions", ":permission_id" ], "variable": [ { "key": "permission_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Permission", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/permissions/:permission_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "permissions", ":permission_id" ], "variable": [ { "key": "permission_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Properties", "item": [ { "name": "List properties", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/properties", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "properties" ] } }, "response": [] }, { "name": "Create Property", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/properties", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "properties" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update Property", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/properties/:property_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "properties", ":property_id" ], "variable": [ { "key": "property_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Property", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/properties/:property_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "properties", ":property_id" ], "variable": [ { "key": "property_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Property Categories", "item": [ { "name": "List categories", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/property_categories", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "property_categories" ] } }, "response": [] }, { "name": "Create Category", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/property_categories", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "property_categories" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update Category", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/property_categories/:category_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "property_categories", ":category_id" ], "variable": [ { "key": "category_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] }, { "name": "Roles", "item": [ { "name": "List roles", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles" ] } }, "response": [] }, { "name": "Create role", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get role", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id" ], "variable": [ { "key": "role_id", "value": "" } ] } }, "response": [] }, { "name": "Update role", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id" ], "variable": [ { "key": "role_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete role", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id" ], "variable": [ { "key": "role_id", "value": "" } ] } }, "response": [] }, { "name": "Get role scopes", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id/scopes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id", "scopes" ], "variable": [ { "key": "role_id", "value": "" } ] } }, "response": [] }, { "name": "Add role scope", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id/scopes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id", "scopes" ], "variable": [ { "key": "role_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete role scope", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id/scopes/:scope_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id", "scopes", ":scope_id" ], "variable": [ { "key": "role_id", "value": "" }, { "key": "scope_id", "value": "" } ] } }, "response": [] }, { "name": "Get role permissions", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id/permissions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id", "permissions" ], "variable": [ { "key": "role_id", "value": "" } ] } }, "response": [] }, { "name": "Update role permissions", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id/permissions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id", "permissions" ], "variable": [ { "key": "role_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "List role users", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id/users", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id", "users" ], "variable": [ { "key": "role_id", "value": "" } ] } }, "response": [] }, { "name": "Remove role permission", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/roles/:role_id/permissions/:permission_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "roles", ":role_id", "permissions", ":permission_id" ], "variable": [ { "key": "role_id", "value": "" }, { "key": "permission_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Search", "item": [ { "name": "Search users", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/search/users", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "search", "users" ] } }, "response": [] } ] }, { "name": "Subscribers", "item": [ { "name": "List Subscribers", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/subscribers", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "subscribers" ] } }, "response": [] }, { "name": "Create Subscriber", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/subscribers", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "subscribers" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Subscriber", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/subscribers/:subscriber_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "subscribers", ":subscriber_id" ], "variable": [ { "key": "subscriber_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Users", "item": [ { "name": "Get users", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users" ] } }, "response": [] }, { "name": "Refresh User Claims and Invalidate Cache", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/refresh_claims", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "refresh_claims" ], "variable": [ { "key": "user_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get user", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/user", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "user" ] } }, "response": [] }, { "name": "Create user", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/user", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "user" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update user", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/user", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "user" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete user", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/user", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "user" ] } }, "response": [] }, { "name": "Update User Feature Flag Override", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/feature_flags/:feature_flag_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "feature_flags", ":feature_flag_key" ], "variable": [ { "key": "user_id", "value": "" }, { "key": "feature_flag_key", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update Property value", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/properties/:property_key", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "properties", ":property_key" ], "variable": [ { "key": "user_id", "value": "" }, { "key": "property_key", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get property values", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/properties", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "properties" ], "variable": [ { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Update Property values", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/properties", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "properties" ], "variable": [ { "key": "user_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Set User password", "request": { "method": "PUT", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/password", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "password" ], "variable": [ { "key": "user_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get identities", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/identities", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "identities" ], "variable": [ { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Create identity", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/identities", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "identities" ], "variable": [ { "key": "user_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get user sessions", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/sessions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "sessions" ], "variable": [ { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Delete user sessions", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/sessions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "sessions" ], "variable": [ { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Get user's MFA configuration", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/mfa", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "mfa" ], "variable": [ { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Reset all environment MFA for a user", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/mfa", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "mfa" ], "variable": [ { "key": "user_id", "value": "" } ] } }, "response": [] }, { "name": "Reset specific environment MFA for a user", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/users/:user_id/mfa/:factor_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "users", ":user_id", "mfa", ":factor_id" ], "variable": [ { "key": "user_id", "value": "" }, { "key": "factor_id", "value": "" } ] } }, "response": [] } ] }, { "name": "Webhooks", "item": [ { "name": "Get Event", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/events/:event_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "events", ":event_id" ], "variable": [ { "key": "event_id", "value": "" } ] } }, "response": [] }, { "name": "List Event Types", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/event_types", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "event_types" ] } }, "response": [] }, { "name": "Update a Webhook", "request": { "method": "PATCH", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/webhooks/:webhook_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "webhooks", ":webhook_id" ], "variable": [ { "key": "webhook_id", "value": "" } ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete Webhook", "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/webhooks/:webhook_id", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "webhooks", ":webhook_id" ], "variable": [ { "key": "webhook_id", "value": "" } ] } }, "response": [] }, { "name": "List Webhooks", "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/webhooks", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "webhooks" ] } }, "response": [] }, { "name": "Create a Webhook", "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "https://{{subdomain}}.kinde.com/api/v1/webhooks", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "webhooks" ] }, "body": { "mode": "raw", "raw": "{}", "options": { "raw": { "language": "json" } } } }, "response": [] } ] } ] }