Versions Compared

Key

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

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...


Tip

Available from CRM.COM R9.0.0

Deprecated from CRM.COM R18.0.0


Excerpt

This method verifies access tokens which are in Pending Verification life cycle state. A single access token can be verified by each call. 

Resource URL

Parameters

Name

Type

Description

token

String

The token retrieved from the login method

access_token_identifier

(mandatory)

Access Token identifier  

The identifier of the access token that should be verified. The allowed access token identifier fields are the following:

Include Page
V4:access_token_identifier
V4:access_token_identifier

verification_code

(mandatory)

String

The verification code which is needed in order to verify the access token

pass_code

(optional)

String

The pass code of the access token that will be provided during verification 

Tip

Available from CRM.COM R14.0.0


fields_set

(optional)

List of Strings, comma separated

A list of fields that should be included in the results. If not specified then all the available fields will be returned

Tip

Available from CRM.COM R10.0.0


Restrictions

  • It is mandatory to specify one of the semi-optional parameters. Only one of those parameters is allowed to be specified.

...

Expand
titleExample 1

HTTP Method: POST

 


Request:

Body:

Code Block
languagejavascript
themeConfluencelanguagejavascript
linenumberstrue
 {
"token":"B394F93D967845AFBC884420592EAA0B",
"access_token_identifier":{"authentication_code":"7"},
"verification_code":"273562"
}

 


Response:

Code Block
languagejavascript
themeConfluencelanguagejavascript
linenumberstrue
     {
       "status":
       {
           "message": "",
           "description": "",
           "code": "OK"
       },
       "data":
       {
           "log_information":
           {
               "updated_date": "2015-11-27T16:08:56",
               "created_date": "2015-11-26T19:26:43",
               "created_by_unit":
               {
                   "community_name": "Internal Community",
                   "id": "48305F8849E3C18B227C5BE3A27BA6DF",
                   "name": "Admin Unit",
                   "group_name": "Main Group",
                   "description": "r1 Test Description for resource request tab.Test Description for resource request tab.",
                   "alternative_code": "MG"
               },
               "updated_by_unit":
               {
                   "community_name": "Internal Community",
                   "id": "48305F8849E3C18B227C5BE3A27BA6DF",
                   "name": "Admin Unit",
                   "group_name": "Main Group",
                   "description": "r1 Test Description for resource request tab.Test Description for resource request tab.",
                   "alternative_code": "MG"
               },
               "created_by_user":
               {
                   "person_name": "MPAdministrator",
                   "username": "MPAdministrator",
                   "id": "1",
                   "email": "sakkascy1986@hotmail.com"
               },
               "updated_by_user":
               {
                   "person_name": "Marios Lannister",
                   "username": "MPAdministrator",
                   "id": "1"
               }
           },
           "verification_code": "273562",
           "reward_participant": null,
           "authentication_code": "7",
           "accounts_receivable":
           {
               "account_owner":
               {
                   "last_name": "Papapavlou",
                   "middle_name": null,
                   "life_cycle_state": "FINANCIAL",
                   "company_profile": null,
                   "title": "Miss",
                   "first_name": "Loukia",
                   "type": "PERSON",
                   "id": "37072CF6ED884737B6592A7CBB6D5342",
                   "name": "Papapavlou Loukia",
                   "company_name": null,
                   "demographics":
                   {
                       "gender": "FEMALE",
                       "passport_issued_by_country": null,
                       "social_security_number": null,
                       "passport_number": null,
                       "industry_sector": null,
                       "country_of_residence":
                       {
                           "three_character_code": "CYP",
                           "two_character_code": "CY",
                           "id": "181",
                           "name": "CYPRUS",
                           "alternative_code": null
                       },
                       "name_day":
                       {
                           "month": null,
                           "day": null
                       },
                       "date_of_birth":
                       {
                           "month": null,
                           "day": null,
                           "year": null
                       },
                       "id_number": "LP1234",
                       "industry": null,
                       "id_issued_by_country": null
                   }
               },
               "life_cycle_state": "ACTIVE",
               "number": "ACR000852",
               "id": "A86D415E729945C6933177D83319FBE6",
               "name": "ACR000852"
           },
           "verified_date": "Fri Nov 27 16:08:55 EET 2015",
           "life_cycle_state": "EFFECTIVE",
           "identifier": "lpapap@gmail.com",
           "number": "ACT0000000177",
           "id": "E8D62A98078A44F79646E4CB4C7DAB19",
           "verified_by_user":
           {
               "person_name": "Marios Lannister",
               "username": "MPAdministrator",
               "id": "1"
           }
       }
    }


...