Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Removes any Box Skills cards metadata from a file.
12345
The unique identifier that represents a file.
The ID for any file can be determined
by visiting a file in the web application
and copying the ID from the URL. For example,
for the URL https://*.app.box.com/files/123
the file_id
is 123
.
Returns an empty response when the cards are successfully deleted.
Returns an error when the file does not have an instance of the Box Skill cards applied to it, or when the user does not have access to the file.
instance_not_found
- An instance of the metadata template for Box
Skill cards was not found on this file.not_found
- The file was not found, or the user does not have access
to the file.Returned when the method was not allowed.
An unexpected client error.
curl -i -X DELETE "https://api.box.com/2.0/files/12345/metadata/global/boxSkillsCards" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.skills.deleteBoxSkillCardsFromFile(file.id);
client.skills.delete_box_skill_cards_from_file(file.id)