Skip to content

rename_resource_hub_folder

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/rename_resource_hub_folder
HandlerOperatelyWeb.Api.Mutations.RenameResourceHubFolder

Authentication#

  • Requires a valid API token.
  • Requires a write-enabled token.
  • Read-only tokens return 403.

Inputs#

FieldTypeRequiredNullableDefault
folder_idid primitive (encoded as string)NoYes-
new_namestringNoYes-

Outputs#

FieldTypeRequiredNullable
successbooleanNoYes

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/rename_resource_hub_folder" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"folder_id":"value", "new_name":"value"}'

Response Example#

{
  "success": true
}