4.3.4.2 Deleting a File Using the File ID

Delete a file from the object store, using the file ID as the reference.

To delete a file:
  1. Open a relevant tool, such as via cURL command.
  2. Prepare a cURL command with the authentication token and other details. For more information refer to the following code.

    Syntax

    curl -k --location --request POST 'https://<hostname>/<TENANT-ID>/utils-service/v1/file/deletefile/{fileId}
    --header 'ofs_remote_user: <USERID>' \
    --header 'locale: en-US' \
    --header 'ofs_tenant_id: <TENANT-ID>' \
    --header 'ofs_workspace_id: WS001' \
    --header 'content-type: application/json' \
    --header 'Authorization: Bearer <TOKEN>'
    Example (truncated)
    curl -k --location --request POST 'https://<hostname>/<TENANT-ID>/utils-service/v1/file/deletefile/5
    --header 'ofs_remote_user: cneadmin' \
    --header 'locale: en-US' \
    --header 'ofs_tenant_id: aaitestdev1001-prd' \
    --header 'ofs_workspace_id: WS001' \
    --header 'content-type: application/json' \
    --header 'Authorization: Bearer eyJ4NXQjUzI1NiI6Ildia25rQUR5TUZIMlhlQ1pKcTY1c3o4VzdEVWhKa0s4MldYY0hadk4wWkkiLCJ4
    ...
    ...
    sQXj0iohsSIEmQXVwwjhhqnc4eJNnmCjx8Tb7TXjx1MIQLeOIcfrIj5gkzoMKX94_7USxHv-6LhBzw'
    Response
    {"payload":"File Deleted Successfully"}