Appearance
Fresh 2026
Product Feed Upload
Reading
A specific product feed upload attempt
Examples
Example to get a list of uploads of a product feed:
bash
curl -G \
-d "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/<PRODUCT_FEED_ID>/uploadsExample to get the status of a feed upload:
bash
curl -G \
-d "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/<PRODUCT_FEED_UPLOAD_ID>Parameters
This endpoint doesn't have any parameters.
Fields
| Field | Description |
|---|---|
id<br>numeric string | ID of the product feed upload<br>Default |
end_time<br>datetime | The time the upload was completed<br>Default |
error_count<br>int32 | The total number of errors for feed upload |
error_report<br>ProductFeedUploadErrorReport | Error report file handle and status, if the error report for this upload was requested |
filename<br>string | The name of the file the product feed was uploaded from |
input_method<br>enum {Manual Upload, Server Fetch, Google Sheets Fetch, Reupload Last File, User initiated server fetch} | The input method the product feed was obtained with |
num_deleted_items<br>int32 | The number of deleted items |
num_detected_items<br>int32 | The number of items detected while reading the feed file |
num_invalid_items<br>int32 | The number of invalid items |
num_persisted_items<br>int32 | The number of persisted items |
start_time<br>datetime | The time the upload process started<br>Default |
url<br>string | The url to fetch the products from |
warning_count<br>int32 | The total number of warnings for feed upload |
Edges
| Edge | Description |
|---|---|
errors<br>Edge<ProductFeedUploadError> | List of errors during the product feed upload |
Error Codes
| Error | Description |
|---|---|
| 100 | Invalid parameter |
Creating
You can make a POST request to error_report edge from the following paths:
/{product_feed_upload_id}/error_report
When posting to this edge, a ProductFeedUpload will be created.
Parameters
This endpoint doesn't have any parameters.
Return Type
This endpoint supports read-after-write and will read the node to which you POSTed.
Struct {
success: bool,
}
Error Codes
| Error | Description |
|---|---|
| 100 | Invalid parameter |
Updating
You can't perform this operation on this endpoint.
Deleting
You can't perform this operation on this endpoint.