## Retrieve a member `$ lightfield member retrieve` **get** `/v1/members/{id}` Retrieves a single member by their ID. **[Required scope](/using-the-api/scopes/):** `members:read` **[Rate limit category](/using-the-api/rate-limits/):** Read ### Parameters - `--id: string` Unique identifier of the member to retrieve. ### Returns - `member_retrieve_response: object { id, createdAt, fields, 3 more }` - `id: string` Unique identifier for the member. - `createdAt: string` ISO 8601 timestamp of when the member was created. - `fields: object { "$email", "$name", "$profileImage", "$role" }` Map of field names to their typed values. - `$email: object { value, valueType }` The member's email address. - `value: string` The field value. - `valueType: "EMAIL"` The data type of the field value. - `"EMAIL"` - `$name: object { value, valueType }` The member's full name. - `value: object { firstName, lastName }` - `firstName: optional string` The contact's first name. - `lastName: optional string` The contact's last name. - `valueType: "FULL_NAME"` The data type of the field value. - `"FULL_NAME"` - `$profileImage: object { value, valueType }` URL of the member's profile image, or null if unset. - `value: string` The field value, or null if unset. - `valueType: "URL"` The data type of the field value. - `"URL"` - `$role: object { value, valueType }` The member's workspace role. - `value: string` The field value. - `valueType: "TEXT"` The data type of the field value. - `"TEXT"` - `httpLink: string` URL to view the member in the Lightfield web app, or null. - `relationships: unknown` Members do not expose writable or readable relationships in this API. - `updatedAt: string` ISO 8601 timestamp of when the member was last updated, or null. ### Example ```cli lightfield member retrieve \ --api-key 'My API Key' \ --id id ``` #### Response ```json { "id": "id", "createdAt": "createdAt", "fields": { "$email": { "value": "value", "valueType": "EMAIL" }, "$name": { "value": { "firstName": "firstName", "lastName": "lastName" }, "valueType": "FULL_NAME" }, "$profileImage": { "value": "value", "valueType": "URL" }, "$role": { "value": "value", "valueType": "TEXT" } }, "httpLink": "httpLink", "relationships": {}, "updatedAt": "updatedAt" } ```