v1

latestOpenAPI 3.0.3Proprietary2026-07-244065126.5 KB
Partnership

Create Partnership User

Create a partnership pre-account for the given email under the authenticated API key's partnership program. A sign-up email is sent to the user with a link to complete account creation. The pre-account expires 30 days after creation. The monthly datapoint limit is determined by the chosen plan (BASE or PLUS).

post/api/v2/partnerships/user

Request body

emailstring email required
plan'BASE' | 'PLUS' required
  • BASE - BASE
  • PLUS - PLUS

Response

emailstring email

Email of the created partnership user.

plan'BASE' | 'PLUS'

Plan assigned to the partnership user.

expires_atstring date-time

ISO 8601 timestamp when the pre-account expires.

Example response

{
  "email": "user@example.com",
  "plan": "PLUS",
  "expires_at": "2026-06-06T12:00:00+00:00"
}