This endpoint lets resellers create brands programatically for their customers. Right now we only support API brand creation for private companies (PRIVATE_PROFIT
). Once the brand is created, you will immediately be able to create a campaign for the brand.
Body
Type of legal entity. Currently only PRIVATE_PROFIT
is supported.
Name of the brand’s registered legal entity.
Display name or DBA name of the brand (optional)
EIN for the legal entity (must match the name).
Link to brand’s website or other web presence.
Privacy Policy URL for the brand. (guide)
Street for the brand address (must match IRS records).
City for the brand address.
State for the brand address, e.g. WA
, CA
, NY
.
Five-digit postal code for the brand address.
Two-letter country code for the address, e.g. US
, CA
, GB
.
First name of support contact.
Last name of support contact.
Email address for support contact.
Phone number for support contact. Must be E.164 format.
Response
Whether the brand was created successfully.
The contents of the brand. The ID of the created brand.
The time that the brand was created.
The time the brand was last updated.
The status of the brand. The brand is saved as a draft.
The brand is pending verification.
The brand is verified and active.
The brand is unverified. Please resubmit.
The brand is verified and vetted. (guide) The type of the legal entity. The brand is a sole proprietorship.
The brand is a private company.
The brand is public company.
The brand is nonprofit organization.
The brand is a government organization.
Whether the brand has been vetted. (guide) Trust score if the brand is vetted.
The display name or DBA name of the brand.
The name of the brand’s legal entity.
The EIN for the brand’s legal entity.
The website URL for the brand.
The privacy policy URL for the brand.
The address for the brand. The street for the address.
The city for the address.
The state for the address.
The postal code for the address.
The country for the address.
The support contact for the brand. The first name of the contact.
The last name of the contact.
The phone number for the contact.
The email address for the contact.
Error message if the request fails.
Errors
If the request fails, it will return an HTTP error status code and an error
field in the body with details. Full list of status codes here .
{
"success" : true ,
"brand" : {
"id" : "h4cQ2gls" ,
"createdAt" : "2023-12-12T12:33:33.630Z" ,
"updatedAt" : "2023-12-12T12:33:33.630Z" ,
"status" : "VERIFIED" ,
"entityType" : "PRIVATE_PROFIT" ,
"vetted" : true ,
"trustScore" : 73 ,
"displayName" : "Sendo AI" ,
"entityName" : "Winno Inc." ,
"ein" : "12-3456789" ,
"website" : "https://sendo.dev" ,
"privacyLink" : "https://sendo.dev/privacy" ,
"address" : {
"street" : "584 Castro St #2028" ,
"city" : "San Francisco" ,
"state" : "CA" ,
"postalCode" : "94114" ,
"country" : "US"
},
"contact" : {
"firstName" : "John" ,
"lastName" : "Smith" ,
"phone" : "+12061234567" ,
"email" : "support@sendo.dev"
}
}
}