MCPcopy Create free account
hub / github.com/slackapi/python-slack-sdk / read_user

Method read_user

slack_sdk/scim/v1/client.py:132–133  ·  view source on GitHub ↗
(self, id: str)

Source from the content-addressed store, hash-verified

130 )
131
132 def read_user(self, id: str) -> ReadUserResponse:
133 return ReadUserResponse(self.api_call(http_verb="GET", path=f"Users/{quote(id)}"))
134
135 def create_user(self, user: Union[Dict[str, Any], User]) -> UserCreateResponse:
136 return UserCreateResponse(

Callers 2

test_usersMethod · 0.95
test_lookup_usersMethod · 0.45

Calls 2

api_callMethod · 0.95
ReadUserResponseClass · 0.85

Tested by 2

test_usersMethod · 0.76
test_lookup_usersMethod · 0.36