Contacts API

Contacts API

Contact CRUD APIs

Authorization

HeaderKey

Description

Authorization *

Zoho-oauthtoken<space><ACCESS_TOKEN>

Accept *

Set to application/json.

*All APIs are accessible under zohovoice.contacts.ALL scope.

OAuth Doc


Create Contact

Use this API to create a contact record.

  POST     https://voice.zoho.com/rest/json/zv/contacts

Scope: zohovoice.contacts.CREATE


Parameters

Param Name

DataType

Description

contact *

string

Contact data as json.

first_name and mobile keys are mandatory.

JSON Schema:

{"first_name":"<string>","last_name":"<string>","email":"<string>","mobile":"<string>","mobile1":"<string>","mobile2":"<string>","mobile3":"<string>","phone":"<string>","phone1":"<string>","phone2":"<string>","phone3":"<string>","company":"<string>","address":"<string>","state":"<string>","country":"<string>","is_favourite":"<string>","is_spam":"<string>","contact_status":{"id":"<id of status>","display_value":"<display value of status>"}}


Get available contact statuses from the get
 contact status API below.


Response


SUCCESS

{

   "code": "200",

   "contacts": {

       "country": "",

       "created_time": 1728037831825,

       "is_spam": "",

       "address": "",

       "mobile": "+12015550123",

       "mobile1": "",

       "phone2": "",

       "last_name": "",

       "phone3": "",

       "is_favourite": "",

       "contact_id": 315000153768793,

       "phone1": "",

       "number": [

           "+12015550126"

       ],

       "phone": "",

       "mobile3": "",

       "mobile2": "",

       "contact_owner": 415005010526109,

       "company": "",

       "state": "",

       "first_name": "test",

       "email": ""

   },

   "status": "SUCCESS"

}


FAILURE

{

   "code": "<App Error Code>",

   "message": "<Error Message>",

   "status": "ERROR"

}



Get All Contact Status

Use this API to get contact statuses.

  GET     https://voice.zoho.com/rest/json/zv/contacts/contact_status

Scope: zohovoice.contacts.READ


Response

SUCCESS

{

    "code": "200",

    "contact_status": [

        {

            "display_value": "Active",

            "id": "1000000000027"

        },

        {

            "display_value": "In Active",

            "id": "1000000000029"

        },

        {

            "display_value": "VIP",

            "id": "1000000000031"

        }

    ],

    "status": "SUCCESS"

}


FAILURE

{

    "code": "<App Error Code>",

    "message": "<Error Message>",

    "status": "ERROR"

}


Get All Contacts

Use this API to get contacts.

  GET     https://voice.zoho.com/rest/json/zv/contacts

Scope: zohovoice.contacts.READ

 

Parameters


Param Name

DataType

Description

totalCount

boolean

true/false (In case total count is needed)

from

integer

0

size

integer

1-50

 


Response

SUCCESS

{

   "code": "200",

   "meta": {

       "total": -1

   },

   "contacts": [

       {

           "country": "",

           "is_spam": "",

           "address": "",

           "mobile": "+15135493562",

           "mobile1": "",

           "phone2": "",

           "last_name": "8Foller",

           "phone3": "",

           "is_favourite": "",

           "contact_id": "347000014281004",

           "phone1": "",

           "phone": "+15135495601",

           "mobile3": "",

           "contact_owner": {

               "display_value": "Vignesh",

               "id": "347000000003015"

           },

           "mobile2": "",

           "company": "",

           "state": "",

           "first_name": "Andrej",

           "email": ""

       },

       {

           "country": "",

           "is_spam": "",

           "address": "",

           "mobile": "+18562644130",

           "mobile1": "",

           "phone2": "",

           "last_name": "91Venere",

           "phone3": "",

           "is_favourite": "",

           "contact_id": "347000014281005",

           "phone1": "",

           "phone": "+18566368749",

           "mobile3": "",

           "contact_owner": {

               "display_value": "Vignesh",

               "id": "347000000003015"

           },

           "mobile2": "",

           "company": "",

           "state": "",

           "first_name": "Art",

           "email": ""

       }

   ],

   "status": "SUCCESS"

}


FAILURE

{

    "code": "<App Error Code>",

    "message": "<Error Message>",

    "status": "ERROR"

}



Delete a Contact

Use this API to delete a contact record.

  DELETE     https://voice.zoho.com/rest/json/zv/contacts/<contact_id>

Scope: zohovoice.contacts.DELETE


Response

SUCCESS

{

   "code": "200",

   "contacts": "<contact_id>",

   "status": "SUCCESS"

}


FAILURE

{

    "code": "<App Error Code>",

    "message": "<Error Message>",

    "status": "ERROR"

}


Get a Contact

Use this API to get a contact record.

  GET     https://voice.zoho.com/rest/json/zv/contacts/<contact_id>

Scope: zohovoice.contacts.READ


Response

SUCCESS

{

   "code": "200",

   "contacts": {

       "country": "",

       "created_time": 1728037831825,

       "is_spam": "",

       "address": "",

       "mobile": "+12015550123",

       "mobile1": "",

       "phone2": "",

       "last_name": "",

       "phone3": "",

       "is_favourite": "",

       "contact_id": 315000153768793,

       "phone1": "",

       "number": [

           "+12015550126"

       ],

       "phone": "",

       "mobile3": "",

       "mobile2": "",

       "contact_owner": 415005010526109,

       "company": "",

       "state": "",

       "first_name": "test",

       "email": ""

   },

   "status": "SUCCESS"

}


FAILURE

{

    "code": "<App Error Code>",

    "message": "<Error Message>",

    "status": "ERROR"

}



Update a Contact

Use this API to update a contact record.

  PUT     https://voice.zoho.com/rest/json/zv/contacts/<contact_id>

Scope: zohovoice.contacts.UPDATE


Parameters


Param Name

DataType

Description

contact *

string

Contact data as json.

first_name and mobile keys are mandatory.

JSON Schema:

{"first_name":"<string>","last_name":"<string>","email":"<string>","mobile":"<string>","mobile1":"<string>","mobile2":"<string>","mobile3":"<string>","phone":"<string>","phone1":"<string>","phone2":"<string>","phone3":"<string>","company":"<string>","address":"<string>","state":"<string>","country":"<string>","is_favourite":"<string>","is_spam":"<string>","contact_status":{"id":"<id of status>","display_value":"<display value of status>"}}

Get available contact statuses from the get contact status API.


 
Response

SUCCESS

{

    "code": "200",

    "contacts": {

        "country": "",

        "created_time": 1728037831825,

        "is_spam": "",

        "address": "",

        "mobile": "+12015550123",

        "mobile1": "",

        "phone2": "",

        "last_name": "",

        "phone3": "",

        "is_favourite": "",

        "contact_id": 315000153768793,

        "phone1": "",

        "number": [

            "+12015550126"

        ],

        "phone": "",

        "mobile3": "",

        "mobile2": "",

        "contact_owner": 415005010526109,

        "company": "",

        "state": "",

        "first_name": "test",

        "email": ""

    },

    "status": "SUCCESS"

}


FAILURE

{

    "code": "<App Error Code>",

    "message": "<Error Message>",

    "status": "ERROR"

}


      Create. Review. Publish.

      Write, edit, collaborate on, and publish documents to different content management platforms.

      Get Started Now


        Access your files securely from anywhere

          Zoho CRM Training Programs

          Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

          Zoho CRM Training
            Redefine the way you work
            with Zoho Workplace

              Zoho DataPrep Personalized Demo

              If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

              Zoho CRM Training

                Create, share, and deliver

                beautiful slides from anywhere.

                Get Started Now


                  Zoho Sign now offers specialized one-on-one training for both administrators and developers.

                  BOOK A SESSION







                              Quick LinksWorkflow AutomationData Collection
                              Web FormsRetailOnline Data Collection Tool
                              Embeddable FormsBankingBegin Data Collection
                              Interactive FormsWorkplaceData Collection App
                              CRM FormsCustomer ServiceForms for Solopreneurs
                              Digital FormsMarketingForms for Small Business
                              HTML FormsEducationForms for Enterprise
                              Contact FormsE-commerceForms for any business
                              Lead Generation FormsHealthcareForms for Startups
                              Wordpress FormsCustomer onboardingForms for Small Business
                              No Code FormsConstructionRSVP tool for holidays
                              Free FormsTravelFeatures for Order Forms
                              Prefill FormsNon-Profit
                              Forms for Government
                              Intake FormsLegal
                              Mobile App
                              Form DesignerHR
                              Mobile Forms
                              Card FormsFoodOffline Forms
                              Assign FormsPhotographyMobile Forms Features
                              Translate FormsReal EstateKiosk in Mobile Forms
                              Electronic FormsInsurance
                              Drag & drop form builder

                              Notification Emails for FormsAlternativesSecurity & Compliance
                              Holiday FormsGoogle Forms alternative GDPR
                              Form to PDFJotform alternativeHIPAA Forms
                              Email FormsWufoo alternativeEncrypted Forms
                              Accessible FormsTypeform alternativeSecure Forms

                              WCAG

                                          Create. Review. Publish.

                                          Write, edit, collaborate on, and publish documents to different content management platforms.

                                          Get Started Now






                                                            You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                                                Manage your brands on social media

                                                                  Use cases

                                                                  Make the most of Zoho Desk with the use cases.

                                                                   
                                                                    

                                                                  eBooks

                                                                  Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho Desk.

                                                                   
                                                                    

                                                                  Videos

                                                                  Watch comprehensive videos on features and other important topics that will help you master Zoho Desk.

                                                                   
                                                                    

                                                                  Webinar

                                                                  Sign up for our webinars and learn the Zoho Desk basics, from customization to automation and more

                                                                   
                                                                    
                                                                  • Desk Community Learning Series


                                                                  • Meetups


                                                                  • Ask the Experts


                                                                  • Kbase


                                                                  • Resources


                                                                  • Glossary


                                                                  • Desk Marketplace


                                                                  • MVP Corner



                                                                    Zoho Sheet Resources

                                                                     

                                                                        Zoho Forms Resources


                                                                          Secure your business
                                                                          communication with Zoho Mail


                                                                          Mail on the move with
                                                                          Zoho Mail mobile application

                                                                            Stay on top of your schedule
                                                                            at all times


                                                                            Carry your calendar with you
                                                                            Anytime, anywhere




                                                                                  Zoho Sign Resources

                                                                                    Sign, Paperless!

                                                                                    Sign and send business documents on the go!

                                                                                    Get Started Now




                                                                                            Zoho TeamInbox Resources





                                                                                                      Zoho DataPrep Demo

                                                                                                      Get a personalized demo or POC

                                                                                                      REGISTER NOW


                                                                                                        Design. Discuss. Deliver.

                                                                                                        Create visually engaging stories with Zoho Show.

                                                                                                        Get Started Now










                                                                                                                            • Related Articles

                                                                                                                            • Zoho Voice SMS REST API

                                                                                                                              Authorization HeaderKey Description Authorization * Zoho-oauthtoken<space><ACCESS_TOKEN> Accept * Set to application/json. OAuth Doc Send SMS Use this API to send SMS POST https://voice.zoho.com/rest/json/v1/sms/send Scope : ZohoVoice.sms.CREATE ...
                                                                                                                            • Users API

                                                                                                                              Users CRUD APIs Authorization HeaderKey Description Authorization * Zoho-oauthtoken<space><ACCESS_TOKEN> Accept * Set to application/json. *All APIs are accessible under zohovoice.agents.ALL scope. OAuth Doc Use this API to get all the users. READ ...
                                                                                                                            • Queues API

                                                                                                                              Queues CRUD APIs Authorization HeaderKey Description Authorization * Zoho-oauthtoken<space><ACCESS_TOKEN> Accept * Set to application/json. *All APIs are accessible under zohovoice.queues.ALL scope. OAuth Doc Create Queue Use this API to create a ...
                                                                                                                            • Power Dialer API

                                                                                                                              Create Power Dialer Use this API to create Power Dialer campaign. POST https://voice.zoho.com/rest/json/zv/api/powerdialer OAuth Scope: ZohoVoice.powerdialer.CREATE Parameters Param Name DataType Description name string campaign name ...
                                                                                                                            • Zoho Voice Recording API

                                                                                                                              Download Recording/VoiceMail API Use this API to download recording/voice mail files. Note: 1.The same API is used to download both voice mail and recording log files. The filename determines which file to download. 2. Threshold for this url - 30 ...
                                                                                                                              Wherever you are is as good as
                                                                                                                              your workplace

                                                                                                                                Resources

                                                                                                                                Videos

                                                                                                                                Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                                                eBooks

                                                                                                                                Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                                                Webinars

                                                                                                                                Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                                                CRM Tips

                                                                                                                                Make the most of Zoho CRM with these useful tips.



                                                                                                                                  Zoho Show Resources