Forum Discussion

jewettg's avatar
jewettg
New Contributor
11 days ago

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

  • jewettg's avatar
    jewettg
    New Contributor

    Should this also all be in "key"="value" pairs instead of the JSON "key":"value" pairs format?