GET
/organization/projects/{project_id}/users/{user_id}Retrieve a project user
Retrieves a user assigned to a specific project. Use project_id and user_id to identify the project membership to retrieve, including the user's role and project-join timestamp.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
project_idstringrequired
The identifier of the project containing the user.
user_idstringrequired
The identifier of the user whose project membership to retrieve.
200Returns the project user object with its object type, identifier, name, email, role, and Unix timestamp for when the user was added.
objectstringrequired
The object type, which is always `organization.project.user`
idstringrequired
The identifier, which can be referenced in API endpoints
namestringoptional
The name of the user
emailstringoptional
The email address of the user
rolestringrequired
`owner` or `member`
added_atintegerrequired
The Unix timestamp (in seconds) of when the project was added.
Error handling
project_id must identify the target project, and user_id must identify the user whose project membership you want to retrieve. Supply both identifiers as strings.