I'm creating a contact with the v3 api (POST to /v3/contacts), and I get a 201 response. But when I look at the contact record that was created via GET to that same endpoint, I see the record with the email address, but no phone numbers associated. Have even tried GET to https://api.cc.email/v3/contacts?include=phone_numbers and I see a phone_numbers array on the record but it is empty. What can I do to ensure that I'm adding a phone number during contact creation properly? Thanks! REQUEST: { "email_address" : { "address": "testwithphone2@example.com", "permission_to_send": "implicit" }, "create_source": "Contact", "phone numbers": [ { "phone_number": "2123334444", "kind": "mobile", "create_source": "Contact" } ] } RESPONSE (201 Created): { "contact_id": "5bbbb590-2229-11ec-98af-fa163e3c5d75", "email_address": { "address": "testwithphone2@example.com", "permission_to_send": "explicit", "created_at": "2021-09-30T20:02:36Z", "updated_at": "2021-09-30T20:02:36Z", "opt_in_source": "Contact", "opt_in_date": "2021-09-30T20:02:36+00:00", "confirm_status": "off" }, "create_source": "Contact", "created_at": "2021-09-30T20:02:36Z", "updated_at": "2021-09-30T20:02:36Z" }
... View more