Replace mutable Scope metadata and relationships

PUT
/v1/scopes/{scope_id}

Authorization

BearerAuth
AuthorizationBearer <token>

Static bearer token used when local Server authentication is enabled.

In: header

Path Parameters

scope_id*string
Match.*\S.*
Length1 <= length <= 256

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/v1/scopes/string" \  -H "Content-Type: application/json" \  -d '{    "expected_version": 1,    "title": "string",    "summary": "string"  }'
{  "scope_id": "string",  "title": "string",  "summary": "string",  "parent_scope_id": "string",  "context_references": [    "string"  ],  "external_references": [    {      "kind": "string",      "value": "string"    }  ],  "version": 1}