ContactCollection

OData collection response containing contact records.

Business ApplicationsCloudEnterpriseLow-CodeMicrosoftNo-CodePower PlatformSaaS

Properties

Name Type Description
@odata.context string OData context URL describing the collection.
@odata.count integer Total count of matching records (when $count=true).
@odata.nextLink string URL to retrieve the next page of results.
value array Array of contact records.
View JSON Schema on GitHub

JSON Schema

microsoft-power-apps-dataverse-web-contact-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ContactCollection",
  "type": "object",
  "description": "OData collection response containing contact records.",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "OData context URL describing the collection."
    },
    "@odata.count": {
      "type": "integer",
      "description": "Total count of matching records (when $count=true)."
    },
    "@odata.nextLink": {
      "type": "string",
      "description": "URL to retrieve the next page of results."
    },
    "value": {
      "type": "array",
      "description": "Array of contact records."
    }
  }
}