curl --compressed --request POST \
--url 'https://api.us.nylas.com/v3/grants/<NYLAS_GRANT_ID>/contacts' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <NYLAS_API_KEY>' \
--header 'Content-Type: application/json' \
--data '{
"birthday": "1960-12-31",
"company_name": "Nylas",
"emails": [
{
"email": "[email protected]",
"type": "work"
},
{
"email": "[email protected]",
"type": "home"
}
],
"given_name": "Leyah",
"groups": [
{
"id": "starred"
},
{
"id": "friends"
}
],
"im_addresses": [
{
"type": "jabber",
"im_address": "leyah_jabber"
},
{
"type": "msn",
"im_address": "leyah_msn"
}
],
"job_title": "Software Engineer",
"manager_name": "Bill",
"middle_name": "Allison",
"nickname": "Allie",
"notes": "Loves Ramen",
"office_location": "123 Main Street",
"phone_numbers": [
{
"number": "+1-555-555-5555",
"type": "work"
},
{
"number": "+1-555-555-5556",
"type": "home"
}
],
"physical_addresses": [
{
"type": "work",
"street_address": "123 Main Street",
"postal_code": "94107",
"state": "CA",
"country": "USA",
"city": "San Francisco"
},
{
"type": "home",
"street_address": "456 Main Street",
"postal_code": "94107",
"state": "CA",
"country": "USA",
"city": "San Francisco"
}
],
"source": "address_book",
"surname": "Miller",
"web_pages": [
{
"type": "work",
"url": "<WEBPAGE_URL>"
},
{
"type": "home",
"url": "<WEBPAGE_URL>"
}
]
}'