create_contact
Add new contacts to Offorte Proposal Software by entering organization or individual details including name, address, contact information, and business identifiers for proposal management.
Instructions
Create a new contact (organisation or person/individual)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | ||
| name | Yes | ||
| street | No | ||
| zipcode | No | ||
| city | No | ||
| state | No | ||
| country | No | ||
| phone | No | ||
| No | |||
| internet | No | ||
| No | |||
| No | |||
| No | |||
| No | |||
| coc_number | No | ||
| vat_number | No | ||
| tags | No | ||
| firstname | No | ||
| lastname | No | ||
| salutation | No | ||
| mobile | No |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"type": "string"
},
"coc_number": {
"type": "string"
},
"country": {
"type": "string"
},
"email": {
"type": "string"
},
"facebook": {
"type": "string"
},
"firstname": {
"type": "string"
},
"instagram": {
"type": "string"
},
"internet": {
"type": "string"
},
"lastname": {
"type": "string"
},
"linkedin": {
"type": "string"
},
"mobile": {
"type": "string"
},
"name": {
"type": "string"
},
"phone": {
"type": "string"
},
"salutation": {
"type": "string"
},
"state": {
"type": "string"
},
"street": {
"type": "string"
},
"tags": {
"items": {
"additionalProperties": true,
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
},
"type": "array"
},
"twitter": {
"type": "string"
},
"type": {
"enum": [
"organisation",
"person"
],
"type": "string"
},
"vat_number": {
"type": "string"
},
"zipcode": {
"type": "string"
}
},
"required": [
"type",
"name"
],
"type": "object"
}