action vtex_get_all_commercial_conditions { label: "Get all commercial conditions" description: "Lists all commercial conditions on the store. \n## Response body example \n \n```json \n[ \n { \n \"Id\": 1, \n \"Name\": \"PadrĂ£o\", \n \"IsDefault\": true \n }, \n { \n \"Id\": 2, \n \"Name\": \"Teste Fast\", \n \"IsDefault\": false \n } \n] \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/commercialcondition/list" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } } required: ["Accept", "Content-Type"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Object with information of the commercial condition." properties: { Id: { type: "integer" description: "Commercial condition ID." } IsDefault: { type: "boolean" description: "Defines if the commercial condition is default (`true`) or not (`false`)." } Name: { type: "string" description: "Commercial condition name." } } } } }