get-entity-attribute
Retrieve specific attribute/field values from PowerPlatform entities using entity and attribute logical names for precise data access.
Instructions
Get a specific attribute/field of a PowerPlatform entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attributeName | Yes | The logical name of the attribute | |
entityName | Yes | The logical name of the entity |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"attributeName": {
"description": "The logical name of the attribute",
"type": "string"
},
"entityName": {
"description": "The logical name of the entity",
"type": "string"
}
},
"required": [
"entityName",
"attributeName"
],
"type": "object"
}