Skip to content

Commit 747f0f6

Browse files
authored
First and Last Name are not required in Attio
https://docs.attio.com/rest-api/endpoint-reference/standard-objects/people/create-a-person-record does not indicate that firstName and lastName are required fields. This is blocking us from creating records when we only have email address, which should be a valid scenario
1 parent 87fb36e commit 747f0f6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

components/attio/attio.app.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ export default {
99
type: "string",
1010
label: "First Name",
1111
description: "The person's first name.",
12+
optional: true,
1213
},
1314
lastName: {
1415
type: "string",
1516
label: "Last Name",
1617
description: "The person's last name.",
18+
optional: true,
1719
},
1820
emailAddress: {
1921
type: "string",

0 commit comments

Comments
 (0)