# credentials_orgs_users_assertions_retrieve Endpoint to retrieve all credential assertions for a user within an organization. This endpoint provides access to all credential assertions (issued credentials) for a specific user within an organization, with support for filtering. Path Parameters: org (str): The organization/tenant identifier user_id (str): The user ID to retrieve assertions for Query Parameters: course (str, optional): Filter by course ID include_revoked (bool, optional): Include revoked assertions (default: false) include_expired (bool, optional): Include expired assertions (default: false) exclude_main_tenant_assertions (bool, optional): Exclude assertions from the main tenant (default: false) Returns: A paginated response using the AssertionSerializer format Error Responses: 401 Unauthorized: If the user is not authenticated 403 Forbidden: If the user does not have permission to access this resource 404 Not Found: If the user or organization doesn't exist 500 Internal Server Error: If an unexpected error occurs Endpoint: GET /api/credentials/orgs/{org}/users/{user_id}/assertions/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Query parameters: - `course` (string) - `exclude_main_tenant_assertions` (boolean) - `include_expired` (boolean) - `include_revoked` (boolean) - `page` (integer) - `page_size` (integer) ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Response 200 fields (application/json): - `next` (string, required) - `previous` (string, required) - `count` (integer, required) - `num_pages` (integer, required) - `page_number` (integer, required) - `max_page_size` (integer, required) - `data` (array, required) - `data.entityId` (string, required) - `data.issuedOn` (string, required) - `data.credentialDetails` (object, required) - `data.recipient` (object, required) - `data.metadata` (any,null) - `data.course` (object, required) - `data.program` (object, required) - `data.narrative` (string,null) - `data.revoked` (boolean) - `data.revocationReason` (string, required) - `data.acceptance` (string) * - Unaccepted * - Accepted * - Rejected Enum: "Unaccepted", "Accepted", "Rejected" - `data.expires` (string, required)