action storecove_update_additional_tax_identifier { label: "Update AdditionalTaxIdentifier" description: "Update an AdditionalTaxIdentifier" provider: storecove method: PATCH path: "/legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } identifier: { type: "string" description: "The identifier." } legal_entity_id: { type: "integer" format: "int64" } third_party_password: { type: "string" description: "The password to use to authenticate to a system through which to send the document, or to obtain tax authority approval to send it. This field is currently relevant only for India and mandatory when creating an IN tax identifier." } third_party_username: { type: "string" description: "The username to use to authenticate to a system through which to send the document, or to obtain tax authority approval to send it. This field is currently relevant only for India and mandatory when creating an IN tax identifier." } } required: ["id", "identifier", "legal_entity_id"] additionalProperties: false } output: { properties: { country: { type: "string" description: "The ISO3166 country code to use this identifier for in case of consumerTaxMode." } county: { type: "string" description: "The county/state inside the country code to use this identifier for in case of consumerTaxMode." } id: { type: "integer" format: "int64" description: "The Storecove assigned id for the AdditionalTaxIdentifier." } identifier: { type: "string" description: "The identifier." } scheme: { type: "string" description: "The scheme of the identifier." } superscheme: { type: "string" description: "The superscheme of the identifier." } } } }