Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

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

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

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

HTTP Method: GET

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

Example HTTP Request Body
 (LEAVE REQUEST BODY EMPTY)
Example Response
200 OK
[
	{
		"id": 123,
		"email": "jon.doe@foo.edu",
		"organization": {
						"id": 456,
						"name": "Foo University",
						"emailDomain": "foo.edu",
						"termsOfService": null,
						"photoRequirements": [ ],
						"bytes": null,
						"logo": null,
						"customCssUrl": null
						},
		"photos": null,
		"authorities": [ ]
	}
]
  • No labels