Skip to main content
POST
/
api
/
v1
/
partners
Create a partner
curl --request POST \
  --url https://api.introw.io/api/v1/partners \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "Acme Partners"
}
'
{
  "data": {
    "id": "ptn_01HVK6Y8Z8Q7J8J8J8J8J8J8J8",
    "name": "Acme Partners",
    "domain": "acme.example",
    "status": "active",
    "createdAt": "2026-05-08T12:00:00.000Z",
    "updatedAt": "2026-05-08T12:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.introw.io/llms.txt

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

Authorizations

x-api-key
string
header
required

Introw API key shown once when the credential is created.

Body

application/json
name
string
required

Partner display name.

Required string length: 1 - 200
domain
string | null

Partner company domain, when known.

Required string length: 1 - 255

Response

Partner created successfully.

data
object
required