PlaybookRuns
Get property fields for a playbook run
get/plugins/playbooks/api/v0/runs/{id}/property_fields
Path parameters
idstring required
Example:mx3xyzdojfgyfdx8sc8of1gdme
ID of the playbook run to retrieve property fields from.
Query parameters
updated_sinceinteger
Example:1602235338837
Filter results to only include property fields updated after this timestamp (Unix time in milliseconds).
Response
List of property fields for the playbook run.
Example response
[
{
"id": "p7fj3k2l5m8n9q1r4s6t8v0w2x",
"type": "select",
"name": "Priority",
"description": "Issue priority level",
"create_at": 1602235338837,
"update_at": 1602235338837,
"attrs": {
"visibility": "when_set",
"sortOrder": 1,
"options": [
{
"id": "opt1",
"name": "High",
"color": "#ff0000"
}
]
}
}
]