Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. email (business)

  2. email (personal)

  3. First name

  4. Last Name

  5. phone (business)

  6. phone (personal)

  7. Linkedin URL

  8. Twitter handle

  9. Twitter User ID

  10. Github URL

to import these setting via json please use this (please note all the fields will need to be mapped to the form eg first_email_field would be mapped to email):

Code Block
{
   "email":[
      "first_email_field",
      "second_email_field"
   ],
   "name":{
      "First Name":"first_name_field",
      "Last Name":"last_name_field"
   },
   "phone":[
      "first_telehpone_field",
      "second_telehpone_field"
   ],
   "profiles":[
      {
         "service":"linkedin",
         "url":"linkedin_url_field"
      },
      {
         "service":"twitter",
         "username":"twitter_username_field"
      },
      {
         "service":"twitter",
         "userid":"twitter_userid_field"
      },
      {
         "service":"github",
         "url":"github_url_field"
      }
   ]
}

Sample request:

when querying the fields email and Linkedin URL only

...