You can update a folder by making a PUT request to https://api.intercom.io/folders/<id>.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"Preview"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:Preview
- The production API serverhttps://api.intercom.io/folders/{id}
- The european API serverhttps://api.eu.intercom.io/folders/{id}
- The australian API serverhttps://api.au.intercom.io/folders/{id}
curl -i -X PUT \
https://api.intercom.io/folders/6 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: Preview' \
-d '{
"folder": {
"name": "Updated Product Documentation",
"emoji": "📖"
}
}'folder updated
The ID of the parent folder, or null if this is a root folder
Example:null
Response
{ "id": 6, "name": "Updated Product Documentation", "description": "Internal product docs", "emoji": "📖", "parent_folder_id": null, "content_count": 5, "created_at": 1672928359, "updated_at": 1672928900 }