List Pending Subscription Requests

Returns list of pending B2C subscription requests.

The company GraphQL API is accessible at /company

  query (
	$includedType: B2cConnectionType
	$excludedType: B2cConnectionType
	$limit: Int
  ) {
	pendingB2cConnectionRequests (
	) {
  	id
  	type
  	status
  	insertedAt
  	updatedAt
  	respondedAt
  	company {
    	id
  	}
  	invitedUser {
    	id
  	}
  	user {
    	id
  	}
}
  }

Last updated

Was this helpful?