Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The numeric identifier of this user |
| first_name | string | The first name of this user |
| last_name | string | The last name of this user |
| full_name | string | The combined full name of this user |
| string | The email this user's account is associated with | |
| email_confirmed | boolean | Whether said email is confirmed yet or not |
| timezone | string | The timezone set for this user |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Profile",
"description": "An authenticated user profile.",
"$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-profile-schema.json",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The numeric identifier of this user",
"example": 100
},
"first_name": {
"type": "string",
"description": "The first name of this user",
"example": "Example Name"
},
"last_name": {
"type": "string",
"description": "The last name of this user",
"example": "Example Name"
},
"full_name": {
"type": "string",
"description": "The combined full name of this user",
"example": "Example Name"
},
"email": {
"type": "string",
"format": "email",
"description": "The email this user's account is associated with",
"example": "[email protected]"
},
"email_confirmed": {
"type": "boolean",
"description": "Whether said email is confirmed yet or not",
"example": true
},
"timezone": {
"type": "string",
"description": "The timezone set for this user",
"example": "example-value"
}
},
"required": [
"email",
"email_confirmed",
"first_name",
"full_name",
"id",
"last_name",
"timezone"
]
}