Versions Compared

Key

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

...

Code Block
languagejs
titleSample REST/Json Method
 {  
  "spAccountLoginName": "accountLogin",
  "spAccountLoginKey": "accountKey",
  "queryFilter": "Mandy@%l%",
  "queryType": "username",      // the default if not specified
  "type": "find_users",


}
Code Block
languagejs
titleSample REST/Json Response
{
  "Users": [
    {
      "username": "Larrylarry"
    },
    {
      "username": "loginMarty2"
    },
    {
      "username": "testltest"
    },
    {
      "username": "test2ltest2"
    },
    {
      "username": "test3ltest3"
    }
  ],
  "errorCode": 0,
  "errorMessage": "OK",
  "type": "find_users"
}

...