cURL
curl --request GET \ --url https://api.scholarlysoftware.com/api/v1/profiles/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "type": "profile", "attributes": { "display_name": "<string>", "first_name": "<string>", "last_name": "<string>", "email": "jsmith@example.com", "created_at": "<string>", "updated_at": "<string>" }, "relationships": { "institution": { "data": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "type": "institution" } }, "current_department": { "data": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "type": "department" } } } } }
Returns a specific profile by UUID with relationships
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Bearer token
Profile UUID
profile found with avatar attached
The response is of type object.
object