action vtex_post_api_catalog_pvt_supplier { label: "Create Supplier" description: "Creates a new Supplier. \n## Request body example \n \n```json \n{ \n \"Name\": \"Supplier\", \n \"CorporateName\": \"TopStore\", \n \"StateInscription\": \"\", \n \"Cnpj\": \"33304981001272\", \n \"Phone\": \"3333333333\", \n \"CellPhone\": \"4444444444\", \n \"CorportePhone\": \"5555555555\", \n \"Email\": \"email@email.com\", \n \"IsActive\": true \n} \n``` \n \n## Response body example \n \n```json \n{ \n \"Id\": 1, \n \"Name\": \"Supplier\", \n \"CorporateName\": \"TopStore\", \n \"StateInscription\": \"\", \n \"Cnpj\": \"33304981001272\", \n \"Phone\": \"3333333333\", \n \"CellPhone\": \"4444444444\", \n \"CorportePhone\": \"5555555555\", \n \"Email\": \"email@email.com\", \n \"IsActive\": true \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/supplier" encoding: json input: { type: "object" properties: { Accept: { type: "string" } CellPhone: { type: "string" description: "Supplier Cellphone." } Cnpj: { type: "string" description: "Corporate legal ID." } "Content-Type": { type: "string" } CorporateName: { type: "string" description: "Supplier Corporate Name." } CorportePhone: { type: "string" description: "Supplier Corporate Phone." } Email: { type: "string" description: "Supplier email." } IsActive: { type: "boolean" description: "Defines if the Supplier is active (`true`) or not (`false`)." } Name: { type: "string" description: "Supplier Name." } Phone: { type: "string" description: "Supplier Phone." } StateInscription: { type: "string" description: "State Inscription." } } required: ["Accept", "CellPhone", "Cnpj", "Content-Type", "CorporateName", "CorportePhone", "Email", "IsActive", "Name", "Phone", "StateInscription"] additionalProperties: false } output: { type: "object" properties: { CellPhone: { type: "string" description: "Supplier Cellphone." } Cnpj: { type: "string" description: "Corporate legal ID." } CorporateName: { type: "string" description: "Supplier Corporate Name." } CorportePhone: { type: "string" description: "Supplier Corporate Phone." } Email: { type: "string" description: "Supplier email." } Id: { type: "integer" description: "Supplier unique identifier code." } IsActive: { type: "boolean" description: "Defines if the Supplier is active (`true`) or not (`false`)." } Name: { type: "string" description: "Supplier Name." } Phone: { type: "string" description: "Supplier Phone." } StateInscription: { type: "string" description: "State Inscription." } } } }