Skip to main content

List batch properties

Lists the properties names and values of all (or by name) the properties in a batch.

Request

GET /batches/{batchId}/properties?BatchId=<string>[&name=<string>]

Parameters

NameTypeInDescription
batchIdstringqueryThe Batch's ID or Pointer ID.
namestringqueryOptional. The property name.

Response example

{
"properties": [
{
"name": "aa",
"value": "vv"
},
{
"name": "ff",
"value": "dd"
}
]
}

cURL example

curl -H "X-Eyes-Api-Key: <your-api-key>" -X GET "https://eyes.applitools.com/api/v1/batches/<some-batch-id>/properties"