get_photo
Retrieve official portrait photographs of Dutch Members of Parliament for use in reports, presentations, or profiles. Input the MP's unique ID to receive the image as a binary resource.
Instructions
Retrieves the official portrait photograph of a Member of Parliament. Returns the image as a binary resource that can be displayed or saved. Use this when you need to include a visual representation of an MP in reports, presentations, or profiles.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personId | Yes | MP's numeric ID - the unique identifier for the Member of Parliament whose photo you want to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"personId": {
"description": "MP's numeric ID - the unique identifier for the Member of Parliament whose photo you want to retrieve",
"type": "string"
}
},
"required": [
"personId"
],
"type": "object"
}