Anchor to section titled 'undefined'

fileAcknowledgeUpdateFailed
mutation

Requires write_files access scope.

Acknowledges file update failure by resetting FAILED status to READY and clearing any media errors.


Specifies the file(s) to acknowledge the failed updates of.


Was this section helpful?

The list of errors that occurred from executing the mutation.


Was this section helpful?
Hide code
Mutation reference
Copy
mutation fileAcknowledgeUpdateFailed($fileIds: [ID!]!) {
  fileAcknowledgeUpdateFailed(fileIds: $fileIds) {
    files {
      # File fields
    }
    userErrors {
      field
      message
    }
  }
}
Hide code
Input
Copy
{
  "fileIds": [
    "gid://shopify/<objectName>/10079785100"
  ]
}