action vtex_get_commercial_conditions { label: "Get commercial condition" description: "Retrieves information of a commercial condition by its ID. \n## Response body example \n \n```json \n{ \n \"Id\": 1, \n \"Name\": \"PadrĂ£o\", \n \"IsDefault\": true \n} \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/commercialcondition/{commercialConditionId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } commercialConditionId: { type: "integer" } } required: ["Accept", "Content-Type", "commercialConditionId"] additionalProperties: false } output: { type: "object" description: "Object with information of the commercial condition." properties: { Id: { type: "integer" description: "Commercial condition ID." } IsDefault: { type: "boolean" description: "If the commercial condition is default (`true`) or not (`false`)." } Name: { type: "string" description: "Commercial condition name." } } } }