Apps
Retrieve App Compliance Information
Retrieve the compliance information for an app in your organization
GET
/
v2
/
apps
/
{app_id}
/
compliance
Authorization
Path
curl --request GET \
--url https://api.senddotssandbox.com/api/v2/apps/{app_id}/compliance \
--header 'Authorization: <authorization>'
{
"company_info": {
"dba": "string",
"ein": "string",
"incorporation_date": "string",
"incorporation_state": "string",
"incorporation_type": "sole_proprietorship",
"name": "string",
"website": "string"
},
"contact_info": "object",
"directors": [
{
"address": {
"city": "string",
"country": "string",
"line1": "string",
"line2": "string",
"state": "string",
"zip": "string"
},
"dob": "string",
"email": "string",
"first_name": "string",
"last_name": "string",
"ownership_percentage": "number",
"phone": "string",
"title": "string"
}
],
"flow_of_funds": "object"
}
Authorizations
Authorizationheaderrequired
string
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
app_idrequired
string
ID of the app to query or modify
Response
200 - application/json
company_info
object
contact_info
object
directors
object[]
flow_of_funds
object
curl --request GET \
--url https://api.senddotssandbox.com/api/v2/apps/{app_id}/compliance \
--header 'Authorization: <authorization>'
{
"company_info": {
"dba": "string",
"ein": "string",
"incorporation_date": "string",
"incorporation_state": "string",
"incorporation_type": "sole_proprietorship",
"name": "string",
"website": "string"
},
"contact_info": "object",
"directors": [
{
"address": {
"city": "string",
"country": "string",
"line1": "string",
"line2": "string",
"state": "string",
"zip": "string"
},
"dob": "string",
"email": "string",
"first_name": "string",
"last_name": "string",
"ownership_percentage": "number",
"phone": "string",
"title": "string"
}
],
"flow_of_funds": "object"
}