pub struct Org {Show 20 fields
pub hipaa_enabled: Option<bool>,
pub subscription: Option<Subscription>,
pub subscription_id: Option<String>,
pub id: String,
pub created_at: String,
pub updated_at: String,
pub stripe_customer_id: Option<String>,
pub stripe_subscription_id: Option<String>,
pub stripe_subscription_item_id: Option<String>,
pub stripe_subscription_current_period_start: Option<String>,
pub stripe_subscription_status: Option<String>,
pub plan: Option<OrgPlan>,
pub jwt_secret: Option<String>,
pub minutes_used: Option<f64>,
pub name: Option<String>,
pub channel: Option<ChannelTrue>,
pub billing_limit: Option<f64>,
pub server: Option<Server>,
pub concurrency_limit: Option<f64>,
pub compliance_plan: Option<CompliancePlan>,
}
Fields§
§hipaa_enabled: Option<bool>
When this is enabled, no logs, recordings, or transcriptions will be stored. At the end of the call, you will still receive an end-of-call-report message to store on your server. Defaults to false. When HIPAA is enabled, only OpenAI/Custom LLM or Azure Providers will be available for LLM and Voice respectively. This is due to the compliance requirements of HIPAA. Other providers may not meet these requirements.
subscription: Option<Subscription>
§subscription_id: Option<String>
This is the ID of the subscription the org belongs to.
id: String
This is the unique identifier for the org.
created_at: String
This is the ISO 8601 date-time string of when the org was created.
updated_at: String
This is the ISO 8601 date-time string of when the org was last updated.
stripe_customer_id: Option<String>
This is the Stripe customer for the org.
stripe_subscription_id: Option<String>
This is the subscription for the org.
stripe_subscription_item_id: Option<String>
This is the subscription’s subscription item.
stripe_subscription_current_period_start: Option<String>
This is the subscription’s current period start.
stripe_subscription_status: Option<String>
This is the subscription’s status.
plan: Option<OrgPlan>
This is the plan for the org.
jwt_secret: Option<String>
This is the secret key used for signing JWT tokens for the org.
minutes_used: Option<f64>
This is the total number of call minutes used by this org across all time.
name: Option<String>
This is the name of the org. This is just for your own reference.
channel: Option<ChannelTrue>
This is the channel of the org. There is the cluster the API traffic for the org will be directed.
billing_limit: Option<f64>
This is the monthly billing limit for the org. To go beyond $1000/mo, please contact us at support@vapi.ai.
server: Option<Server>
This is where Vapi will send webhooks. You can find all webhooks available along with their shape in ServerMessage schema. The order of precedence is: 1. assistant.server 2. phoneNumber.server 3. org.server
concurrency_limit: Option<f64>
This is the concurrency limit for the org. This is the maximum number of calls that can be active at any given time. To go beyond 10, please contact us at support@vapi.ai.
compliance_plan: Option<CompliancePlan>
Stores the information about the compliance plan enforced at the organization level. Currently pciEnabled is supported through this field. When this is enabled, any logs, recordings, or transcriptions will be shipped to the customer endpoints if provided else lost. At the end of the call, you will receive an end-of-call-report message to store on your server, if webhook is provided. Defaults to false. When PCI is enabled, only PCI-compliant Providers will be available for LLM, Voice and transcribers. This is due to the compliance requirements of PCI. Other providers may not meet these requirements.