Firstbase
  • Welcome
  • Incorporation API
    • Overview
    • Environment
    • Authentication
    • Name Check
      • Request
      • Response
        • Response for Successful
        • Response for Failed
    • Incorporation Order
      • Request
        • User
        • Company
        • Holders
        • Parent Companies
      • Response
        • Response for Successful
        • Response for Failed
          • Unavailable company
          • LLC - Wrong count percent
    • Fetch Order By External Id
      • Request
      • Response
        • Response for Successful
        • Response for Failed
          • Order not found
    • States of Incorporation
      • Request
      • Response
    • Countries
      • Request
      • Response
    • Industries
      • Request
      • Response
    • Webhook
      • Request
      • Response
      • Callback
        • Order call
        • Document call
    • Company Info
Powered by GitBook
On this page

Was this helpful?

  1. Incorporation API
  2. Fetch Order By External Id
  3. Response

Response for Successful

When all the information is correct and was accepted by the API, the response returned is as shown below.

Code 200: Order found

{
	"user": {
		"firstName": "Felipe",
		"lastName": "Alves",
		"name": "Felipe Alves",
		"email": "gogaf6216dadad9@carsik.com"
	},
	"company": {
		"companyType": "llc",
		"registrationState": "delaware",
		"businessName": "Business Teadadast Every",
		"businessNameEnding": "LLC",
		"industry": "Financial Services",
		"servicesProvided": null,
		"description": null,
		"employeeSize": null,
		"revenueSize": null,
		"customersInUS": false,
		"dateBusinessStarted": null,
		"decidedFlags": {
			"responsibleParty": true,
			"businessDetails": true,
			"officers": true,
			"directors": true,
			"bitMask": 15
		},
		"county": null,
		"state": null,
		"city": null,
		"address": null,
		"suite": null,
		"zipCode": null,
		"bankAccounts": [],
		"ss4": null,
		"form8821": null,
		"ein": null,
		"countOfShares": null,
		"minSharePrice": null,
		"createdAt": "2022-08-01T16:07:38+00:00",
		"updatedAt": "2022-08-01T16:07:38+00:00",
		"isNonInc": false,
		"externalId": "CPF4A935"
	},
	"holders": [
		{
			"firstName": "Felipe",
			"middleName": "",
			"lastName": "Alves",
			"email": "gogaf621dada69@carsik.com",
			"phone": 5532943153887,
			"country": null,
			"state": null,
			"city": null,
			"address": null,
			"zipCode": null,
			"percent": 100,
			"position": [],
			"isAdult": true,
			"isResponsibleForSign": false,
			"isShareHolder": true,
			"ssnItin": null
		}
	]
}
PreviousResponseNextResponse for Failed

Last updated 2 years ago

Was this helpful?