Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
jewettg
11 days agoNew Contributor
Documentation Correction:
From: https://developer.1password.com/docs/sdks/manage-items
Under "Address":
- fieldType should be field_type, and
- sdk.ItemFieldType.Address should be ItemFieldType.ADDRESS
- sectionID should be section_id
{
id: "address",
title: "Address",
sectionId: "custom section",
fieldType: sdk.ItemFieldType.Address,
value: "",
details: {
type: "Address",
content: {
street: "1234 Elm St",
city: "Springfield",
country: "USA",
zip: "12345",
state: "IL",
},
},
},
1 Reply
- jewettgNew Contributor
Should this also all be in "key"="value" pairs instead of the JSON "key":"value" pairs format?