---
title: "Redeem Promo"
method: POST
path: "/v1/organizations/billing/redeem-promo"
tags: ["Organization Billing"]
---

# Redeem Promo

`POST /v1/organizations/billing/redeem-promo`

Redeem a promo code on a FRESH org — no Checkout, no card (BACKE-2854).

Ethan directive 2026-07-22: a promo code must let the user continue
without entering a CC. This creates the subscription server-side with the
coupon attached (the self-serve twin of the manual comp flow), stamps
``metadata.organization_id`` so the subscription webhook grants tier +
POC cap, and sets the org's plan fields inline so the user continues
IMMEDIATELY (no webhook-latency paywall).

Only codes whose window bills $0 (percent_off=100 — every POC code by
validated shape) can start service card-less: a partial discount with no
payment method would generate a FAILING first invoice (service cut +
dunning — strictly worse than the card form; the uncollectable shape
POC-PROMO-CAP-2026-07-17 exists to prevent). Partial codes get a clear
redirect to checkout, where the discount still applies. Card-ask happens
at coupon end (finances' T-7d lifecycle).

Every failure carries a reason — never a silent no-op.

## Request body

- RedeemPromoRequest
  - `code` string, required
  - `plan` string — Plan slug to start on the comped window (product_tier, e.g. managed_build). Must be self-serve and match the code's product restriction.
  - `onboarding_answers` OnboardingAnswers — Optional signup questions — each non-empty answer takes $5 off the first invoice (max $10). Answers are persisted for GTM attribution.
    - `building` string, nullable — What are you building?
    - `referral_source` string, nullable — How did you hear about Mixpeek?

## Response `200`

Successful Response

- RedeemPromoResponse
  - `redeemed` boolean, required
  - `code` string, required
  - `plan` string, required
  - `account_type` string, required
  - `subscription_id` string, required
  - `poc_usage_cap_cents` integer, nullable — POC promo usage ceiling (cents), granted via the subscription webhook (cap_source=poc_promo:*).
  - `duration_in_months` integer, nullable

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/mixpeek/apis/mixpeek-api.md) · [All operations](https://skmtc.net/mixpeek/apis/mixpeek-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixpeek/mixpeek-api/revisions/5307993e44d3/schema)
