Respond to C2B Connection Request

Respond to a Connection request received from a Person.

The company GraphQL API is accessible at /company

mutation (
	$requestId: ID!
	$response: ConnectionRequestResponse!
  ) {
	respondC2bConnectionRequest (
  	requestId: $requestId
  	response: $response
	) {
  	id
  	status
  	type
  	insertedAt
  	respondedAt
  	updatedAt
  	user {
    	id
  	}
  	invitedCompany {
    	id
  	}
  	respondedByUser {
    	id
  	}
	}
  }

Last updated

Was this helpful?