My contacts are being created without the sent properties

Hi,

I’m trying to create some contacts using this endpoint:

/crm/v3/objects/contacts

I got a success message, however any property sent is being registered, when I check the contacts, they are there, but wihout any information, just an empty contact:

Any idea what I’m doing wrong here ?

Thanks!

@DlKayman, I believe you need to wrap the properties into a properties object

eg:

{
 "properties": {
 "company": "Biglytics",
 "email": "bcooper@biglytics.net",
 "firstname": "Bryan",
 "lastname": "Cooper",
 "phone": "(877) 929-0687",
 "website": "biglytics.net"
 }
}

Thank you very much, @dennisedson !