Skip to main content
API version 2024.0 A Box Skill metadata card that puts a status message in the metadata sidebar.
type
string
example: skill_cardThe value will always be skill_card.Value is always skill_card
created_at
string(date-time)
example: 2018-04-13T13:53:23-07:00The optional date and time this card was created at.
invocation
object
The invocation of this service, used to track which instance of a service applied the metadata.
skill
object
The service that applied this metadata.
skill_card_title
object
The title of the card.
skill_card_type
string
example: statusThe value will always be status.Value is always status
status
object
Sets the status of the skill. This can be used to show a message to the user while the Skill is processing the data, or if it was not able to process the file.
{
  "type": "skill_card",
  "created_at": "2018-04-13T13:53:23-07:00",
  "invocation": {
    "id": "image-recognition-service-123",
    "type": "skill_invocation"
  },
  "skill": {
    "id": "image-recognition-service",
    "type": "service"
  },
  "skill_card_title": {
    "code": "status",
    "message": "Status"
  },
  "skill_card_type": "status",
  "status": {
    "code": "success",
    "message": "We're preparing to process your file. Please hold on!"
  }
}