action id4i_patch_properties { label: "Patch ID4n properties" description: "Partial updating of id4n properties. If a property contains a null value the property will be deleted other values will be saved and overwritten if they already exist." provider: id4i method: PATCH path: "/api/v1/id4ns/{id4n}/properties" encoding: json input: { type: "object" properties: { id4n: { type: "string" } organizationId: { type: "string" } } required: ["id4n", "organizationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }