VTEX · Schema

ShipperCustomerResponse

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
idShipperCustomer integer
email string
firstName string
lastName string
cpf string
addressStreet string
addressNumber string
addressComplement string
addressNeighborhood string
addressCity string
postalCode string
state object
country object
created string
companyName string
cnpj string
legalType object
idExternalShipperCustomer string
phoneAreaCode string
phoneNumber string
View JSON Schema on GitHub

JSON Schema

vtex-shippercustomerresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShipperCustomerResponse",
  "title": "ShipperCustomerResponse",
  "type": "object",
  "properties": {
    "idShipperCustomer": {
      "type": "integer",
      "format": "int32"
    },
    "email": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "cpf": {
      "type": "string"
    },
    "addressStreet": {
      "type": "string"
    },
    "addressNumber": {
      "type": "string"
    },
    "addressComplement": {
      "type": "string"
    },
    "addressNeighborhood": {
      "type": "string"
    },
    "addressCity": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "state": {
      "$ref": "#/components/schemas/StateResponse"
    },
    "country": {
      "$ref": "#/components/schemas/CountryResponse"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "companyName": {
      "type": "string"
    },
    "cnpj": {
      "type": "string"
    },
    "legalType": {
      "$ref": "#/components/schemas/LegalTypeResponse"
    },
    "idExternalShipperCustomer": {
      "type": "string"
    },
    "phoneAreaCode": {
      "type": "string"
    },
    "phoneNumber": {
      "type": "string"
    }
  }
}