Versions Compared

Key

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

URI: 

  • https://api.

  • onlinephotosubmission
  • cloudcard.

  • com
  • us/api/people/{id}/with-links

  • https://api.

    onlinephotosubmission

    cloudcard.

    com

    us/api/people/{email address}/with-links?findBy=email

  • https://api.

    onlinephotosubmission

    cloudcard.

    com

    us/api/people/{identifier}/with-links?findBy=identifier

Optional URL Parameters: findBy=[id|email|identifier] (default: id)

HTTP Method:GET

Required Headers: X-Auth-Token  (see: Authentication)

...

Code Block
 (LEAVE REQUEST BODY EMPTY)

Info

The response contains a full JSON representation of the person.  The login link can be found in the links field.

...

Code Block
200 OK
{ 

   "accountExpired":false,
   "accountLocked":false,
   "activatedDate":null,
   "authorities":[ ... ],
   "currentPhoto":null,
   "customFields":{ ... },
   "dateTermsAccepted":null,
   "domainClass":"com.campuscardtools.myphotoid.Person",
   "email":"john.doe@foo.edu",
   "enabled":true,
   "id":123,
   "identifier":"ABC123",
   "latestPhoto": null,
   "links": { "login": "https://app.onlinephotosubmission.com/#/login?auth_token=abcdefghijklmnopqrstuvwxyz" },
   "organization":{ ... },
   "passwordExpired":false,
   "passwordResetRequired":false,
   "readOnly":false,
   "username":"john.doe@foo.edu"
}

...