FileForms
Prices

Set Price

PUT
/organization/prices/{type}

Set a custom retail price for a product type, or enable/disable a formation tier. retailAmount is in dollars and must be at least the wholesale floor: the per-product wholesale override when one exists, otherwise the product's default wholesale price. Floor violations include a minimumAmount field (dollars) alongside the error message. enabled: false is accepted for formation tiers only, and at least one tier must remain enabled.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Path Parameters

type*string

Product type

Value in

  • "ein"
  • "expedited_formation"
  • "formation_tier_1"
  • "formation_tier_2"
  • "formation_tier_3"
  • "annual_report"
  • "registered_agent"
  • "foreign_qualification"
  • "certificate_of_good_standing"

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/organization/prices/ein" \  -H "Content-Type: application/json" \  -d '{}'
{  "type": "ein",  "name": "string",  "description": "string",  "defaultAmount": 0,  "retailAmount": 0,  "wholesaleAmount": 0,  "enabled": true}