TNID
  • Welcome
  • Getting Started
    • Company Authentication
    • User Authentication
    • Accessing via Postman / GraphQL Schema examples
  • Company
    • Search Companies
    • Invite Company
    • List Organization Types
    • List Vertical Types
    • Update Company Profile
    • B2B Features
      • Send B2B Connection Request
      • List B2B Connections
      • List Pending B2B Connection Requests
      • Cancel B2B Connection Request
      • Get Received B2B Connection Requests
      • Respond to B2B Connection Requests
    • B2C Features
      • List B2C (People) Connections
      • List Pending People Connection Requests
      • List Active Subscribers
      • List Pending Subscription Requests
      • Send Person (B2C) Connection Request
      • Invite People (as Company)
      • Send Person (B2C) Subscription Request
      • Cancel Pending B2C Connection Request
      • Cancel Pending B2C Subscription Request
      • Get Pending Connection Requests (People)
      • Respond to C2B Connection Request
      • Get Connected People
      • Search People
      • List Opt-Out Requests
      • Create Opt-out Request
  • User
    • Update User profile
    • Search User (People)
    • Invite User (People)
    • Connections
      • Send C2B Connection Request
      • List B2C connections
      • List received pending B2C Connection Requests
      • Respond to received B2C Connection Request
      • Revoke sent C2B Connection Request
      • List sent pending C2B Connection Requests
    • Spam Reporting Features
      • Create Spam Report
      • List Spam Reports
    • Company Features
      • Search Companies
      • Create company profile
      • List Pending C2C Connection Requests
      • Revoke sent C2C Connection Request
      • List Received C2C Connection Requests
      • Send C2C Connection Request
      • Respond C2C Connection Request
      • List C2C Connections
  • Group Features
    • Search Groups
    • List User's Groups
    • Create Group
    • Update group
    • Invite User to Group
    • Respond to Group invite
    • List pending Group invites (Sent)
    • List pending Group invites (Received)
    • Revoke Pending Group User Member Invite
    • Send Group user member join request
    • List Received Pending Group user member join request
    • List Pending Group user member join request
    • Revoke Group user member join request
    • Respond to Group user member join request
Powered by GitBook
On this page

Was this helpful?

  1. User
  2. Company Features

Search Companies

This will return a list of companies matching the query and in case queried props are visible to the querier, it will be possible to query by:

  • Legal name (with name field)

  • Brand name (with name field)

  • Profile name (with name field)

  • TaxID

  • Telephone number

  • Email

  • Webpage (social media or other)

Each result will return a list of companies. It is possible to pass a combination of queryable props.

 query (
	$name: String
	$taxId: String
	$email: String
	$telephoneNumber: String
	$webpage: String
	$limit: Int
  ) {
	companies (
  	name: $name
  	taxId: $taxId
  	email: $email
  	telephoneNumber: $telephoneNumber
  	webpage: $webpage
  	limit: $limit
	) {
  	id
  	legalName
  	brandName
  	profileName
  	taxId
  	yearFounded
  	aboutUs
  	metadata
  	verified
  	logoUrl
  	verticalType {
    	id
    	displayName
    	description
  	}
  	organizationType {
    	id
    	displayName
  	}
  	addresses {
    	city
    	country
    	state
    	street
    	types
    	zipCode
  	}
  	emails {
    	email
  	}
  	telephoneNumbers {
    	number
  	}
  	socialNetworks {
    	type
    	url
  	}
  	webpages {
    	type
    	url
  	}
  	specialties {
    	description
    	title
  	}
  	subscriptionTopics
	}
  }
PreviousCompany FeaturesNextCreate company profile

Last updated 3 months ago

Was this helpful?