VTEX · Schema

responseCreateSellerLead

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
sellerId string ID of the created seller.
createdAt string Creation date of the seller.
updatedAt string Date of the last update of the seller.
View JSON Schema on GitHub

JSON Schema

vtex-responsecreatesellerlead-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/responseCreateSellerLead",
  "title": "responseCreateSellerLead",
  "type": "object",
  "properties": {
    "sellerId": {
      "type": "string",
      "description": "ID of the created seller.",
      "example": "7890123456"
    },
    "createdAt": {
      "type": "string",
      "description": "Creation date of the seller.",
      "example": "2022-01-01T12:34:56Z"
    },
    "updatedAt": {
      "type": "string",
      "description": "Date of the last update of the seller.",
      "example": "2023-01-01T12:34:56Z"
    }
  }
}