Versions Compared

Key

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


Info

This Example Project demonstrates how to consume this API endpoint within a C# project.


URI: https://app.cloudcardtools.com/api/people/{ id | email | identifier }

Example URI: https://app.cloudcardtools.com/api/people/123
Example URI: https://app.cloudcardtools.com/api/people/jon.doe@foo.edu
Example URI: https://app.cloudcardtools.com/api/people/A1234567
 


Note

This endpoint searches for a matching cardholder by id (aka database id), email, and then by identifier (aka student ID) in that order; and it returns the first matching cardholder.

Be aware that, if you search by an identifier value that contains digits only, there is the possibility that there will be a cardholder in your organization with the same database id, in which case the cardholder with the matching database ID will be returned rather than the cardholder with the matching identifier.

HTTP Method: GET

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

...