Skip to main content
POST
/
api
/
v2
/
sos-filing-documents
Order SOS filing document
curl --request POST \
  --url https://api.example.com/api/v2/sos-filing-documents/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "companyName": "<string>",
  "state": "AK",
  "city": "<string>",
  "street": "<string>",
  "postalCode": "<string>"
}
'
{
  "id": "<string>",
  "checkedAt": "2023-11-07T05:31:56Z",
  "status": "NOT_ORDERED",
  "dataFile": "<string>",
  "reportFile": "<string>",
  "companyName": "<string>",
  "formationDate": "2023-12-25",
  "entityType": "CORPORATION",
  "watchlistHitsCount": -1
}

Authorizations

Authorization
string
header
required

The request must contain basic auth headers where username is API key and password is API secret.
In order for you to start using our API you will need an API key and API secret.
Both can be retrieved by contacting iDenfy's support or iDenfy's sales team.

Body

application/json
companyName
string
required
Required string length: 1 - 255
state
enum<string>
required
Available options:
AK,
AL,
AR,
AZ,
CA,
CO,
CT,
DE,
FL,
GA,
HI,
IA,
ID,
IL,
IN,
KS,
KY,
LA,
MA,
MD,
ME,
MI,
MN,
MO,
MS,
MT,
NC,
ND,
NE,
NH,
NJ,
NM,
NV,
NY,
OH,
OK,
OR,
PA,
RI,
SC,
SD,
TN,
TX,
UT,
VA,
VT,
WA,
WI,
WV,
WY
city
string
required
Required string length: 1 - 100
street
string
required
Required string length: 1 - 255
postalCode
string
required
Required string length: 1 - 10
Pattern: ^\d{5}$

Response

201 - application/json
id
string
required
checkedAt
string<date-time> | null
status
enum<string>
Available options:
NOT_ORDERED,
IN_PROGRESS,
FINISHED,
FAILED,
TIMED_OUT
dataFile
string<uri> | null
Pattern: (?:json)$
reportFile
string<uri> | null
Pattern: (?:pdf)$
companyName
string | null
Maximum string length: 100
formationDate
string<date> | null
entityType
enum<string>
Available options:
CORPORATION,
LLC,
PARTNERSHIP,
NON_PROFIT,
TRUST,
SOLE_PROPRIETORSHIP
watchlistHitsCount
integer | null
Required range: -2147483648 <= x <= 2147483647