> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/company/b2c-features/invite-people-as-company.md).

# Invite People (as Company)

* Provide as much information as possible and create shallow (unclaimed) profiles
* Send the invites to those people and connection requests

```
mutation (
	$user: InviteUserInput!
	$connectionType: B2cConnectionType!
        ) {
	createB2cInvite (
  	user: $user
  	connectionType: $connectionType
	) {
  	id
  	status
  	type
  	insertedAt
  	respondedAt
  	updatedAt
  	company {
    	id
  	}
  	user {
    	id
  	}
  	invitedUser {
    	id
    	firstName
    	lastName
  	}
	}
  }

```
