action storecove_get_additional_tax_identifier { label: "Get AdditionalTaxIdentifier" description: "Get an AdditionalTaxIdentifier" provider: storecove method: GET path: "/legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } legal_entity_id: { type: "integer" format: "int64" } } required: ["id", "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." } } } }