kittycad.api.orgs.create_org_member

Functions

asyncio(body, *, client)

If the user exists, this will add them to your org.

asyncio_detailed(body, *, client)

sync(body, *, client)

If the user exists, this will add them to your org.

sync_detailed(body, *, client)

kittycad.api.orgs.create_org_member._build_response(*, response)[source][source]
Return type:

Response[Union[OrgMember, Error, None]]

kittycad.api.orgs.create_org_member._get_kwargs(body, *, client)[source][source]
Return type:

Dict[str, Any]

kittycad.api.orgs.create_org_member._parse_response(*, response)[source][source]
Return type:

Union[OrgMember, Error, None]

async kittycad.api.orgs.create_org_member.asyncio(body, *, client)[source][source]

If the user exists, this will add them to your org. If they do not exist, this will create a new user and add them to your org. In both cases the user gets an email that they have been added to the org. If the user is already in your org, this will return a 400 and a message. If the user is already in a different org, this will return a 400 and a message. This endpoint requires authentication by an org admin. It adds the specified member to the authenticated user’s org.

Return type:

Union[OrgMember, Error, None]

async kittycad.api.orgs.create_org_member.asyncio_detailed(body, *, client)[source][source]
Return type:

Response[Union[OrgMember, Error, None]]

kittycad.api.orgs.create_org_member.sync(body, *, client)[source][source]

If the user exists, this will add them to your org. If they do not exist, this will create a new user and add them to your org. In both cases the user gets an email that they have been added to the org. If the user is already in your org, this will return a 400 and a message. If the user is already in a different org, this will return a 400 and a message. This endpoint requires authentication by an org admin. It adds the specified member to the authenticated user’s org.

Return type:

Union[OrgMember, Error, None]

kittycad.api.orgs.create_org_member.sync_detailed(body, *, client)[source][source]
Return type:

Response[Union[OrgMember, Error, None]]