Properties
| Name | Type | Description |
|---|---|---|
| requestId | string | |
| status | string | |
| payeeEmail | string | |
| createdDate | string | |
| expirationDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/W9RequestResponse",
"title": "W9RequestResponse",
"type": "object",
"properties": {
"requestId": {
"type": "string"
},
"status": {
"type": "string"
},
"payeeEmail": {
"type": "string"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"expirationDate": {
"type": "string",
"format": "date-time"
}
}
}