Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| customerCode | string | |
| name | string | |
| line1 | string | |
| city | string | |
| region | string | |
| postalCode | string | |
| country | string | |
| emailAddress | string | |
| phoneNumber | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/certcapture-cert-capture-customer-schema.json",
"title": "CertCaptureCustomer",
"description": "CertCaptureCustomer schema from Avalara API",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"customerCode": {
"type": "string"
},
"name": {
"type": "string"
},
"line1": {
"type": "string"
},
"city": {
"type": "string"
},
"region": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"phoneNumber": {
"type": "string"
}
}
}