Sign in

Update resource server

documented

Update a resource server.

PATCH /api/v2/resource-servers/{id}Management APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$domain}}/api/v2/resource-servers/{{$resource_server_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "identifier": "{{$identifier}}", "scopes": [{"value": "{{$scope1_value}}", "description": "{{$scope1_description}}"}, {"value": "{{$scope2_value}}", "description": "{{$scope2_description}}"}], "enforce_policies": {{$enforce_policies}}, "token_dialect": "{{$token_dialect}}"}'
Update resource server · Auth0 · OpenIntegrations