Skip to main content
POST
/
partner
/
applications
Create Application
curl --request POST \
  --url https://api.meow.com/v1/partner/applications \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "user_email": "jsmith@example.com",
  "business_name": "<string>",
  "business_date_of_incorporation": "2023-12-25",
  "business_address": {
    "address": "<string>",
    "city": "<string>",
    "zip": "<string>",
    "address_2": "<string>",
    "state": "<string>"
  },
  "partner_reference_id": "<string>"
}
'
{
  "application_id": "<string>",
  "business_name": "<string>",
  "partner_reference_id": "<string>",
  "onboarding_url": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developer.meow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Body

application/json
user_email
string<email>
required

Email address of the primary user who will own the account

business_name
string
required

Legal business name

business_date_of_incorporation
string<date>
required

Date the business was incorporated

Legal structure of the business (e.g. llc, corp)

Available options:
ccorp,
corp,
estate,
foreign_entity,
llc,
llp,
lp,
nonprofit,
partnership,
scheme,
scorp,
soleprop,
trust
business_address
PartnerAddress · object
required

Registered business address

incorporation_state
enum<string> | null

State or jurisdiction of incorporation

Available options:
AL,
AK,
AZ,
AR,
CA,
CO,
CT,
DC,
DE,
FL,
GA,
HI,
ID,
IL,
IN,
IA,
KS,
KY,
LA,
ME,
MD,
MA,
MI,
MN,
MS,
MO,
MT,
NE,
NV,
NH,
NJ,
NM,
NY,
NC,
ND,
OH,
OK,
OR,
PA,
RI,
SC,
SD,
TN,
TX,
UT,
VT,
VA,
WA,
WV,
WI,
WY,
PR
partner_reference_id
string | null

Partner's own reference ID for this application, used for idempotency

Response

Successful Response

application_id
string
required

Unique application identifier

status
enum<string>
required

Current status of the application

Available options:
pending_document_upload,
pending_user_action,
submitted,
under_review,
approved,
rejected
business_name
string | null
required

Legal business name

partner_reference_id
string | null
required

Partner's reference ID

onboarding_url
string
required

URL for the user to complete onboarding

created_at
string
required

ISO 8601 timestamp of when the application was created

updated_at
string
required

ISO 8601 timestamp of when the application was last updated