Payload Metadata
Retrieves a paginated list of payload metadata records. Can be filtered by id, flow_run_id, flow_step_id, and flow_log_id.
API key passed in the Authorization header. Format: <api-key>
Filter results by id.
Filter results by flow_run_id.
Filter results by flow_step_id.
Filter results by flow_log_id.
Sort field. Prefix with - for descending. Available: created_at, id
Page number for pagination.
1Number of results per page.
Successful response
Unauthenticated
Unauthorized
GET /api/v1/payload-metadata HTTP/1.1
Host: core.wearepatchworks.com
Authorization: YOUR_API_KEY
Accept: */*
{
"data": [
{
"id": 0,
"flow_version_id": 0,
"flow_step_id": 0,
"flow_run_id": "string",
"payload_store_reference": "string",
"payload_size": 0,
"dropped": false
}
],
"links": {
"first": "string",
"last": "string",
"prev": null,
"next": null
},
"meta": {
"current_page": 0,
"from": 0,
"last_page": 0,
"links": [],
"path": "string",
"per_page": 0,
"to": 0,
"total": 0
}
}Retrieves the details of a specific payload metadata record.
API key passed in the Authorization header. Format: <api-key>
The payload metadatum identifier.
Filter results by id.
Filter results by flow_run_id.
Filter results by flow_step_id.
Filter results by flow_log_id.
Sort field. Prefix with - for descending. Available: created_at, id
Page number for pagination.
1Number of results per page.
Successful response
Unauthenticated
Unauthorized
GET /api/v1/payload-metadata/{payload_metadatum} HTTP/1.1
Host: core.wearepatchworks.com
Authorization: YOUR_API_KEY
Accept: */*
{
"data": {
"id": 1,
"created_at": "2025-01-15T10:30:00.000000Z",
"updated_at": "2025-01-15T10:30:00.000000Z",
"flow_version_id": 1,
"flow_step_id": 1,
"flow_run_id": 1,
"payload_store_reference": "example_payload_store_reference",
"payload_size": "example_payload_size",
"dropped": "example_dropped"
}
}To be confirmed.
API key passed in the Authorization header. Format: <api-key>
The payloadMetadatum identifier.
Successful response
No content
Unauthenticated
Unauthorized
GET /api/v1/payload-metadata/{payloadMetadatum}/meta HTTP/1.1
Host: core.wearepatchworks.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Downloads the payload data for a specific payload metadata record.
API key passed in the Authorization header. Format: <api-key>
The payloadMetadatum identifier.
Successful response
Unauthenticated
Unauthorized
GET /api/v1/payload-metadata/{payloadMetadatum}/download HTTP/1.1
Host: core.wearepatchworks.com
Authorization: YOUR_API_KEY
Accept: */*
{}Last updated
Was this helpful?