Estimates
15min
Create a baseline ROI estimation model that is siloed for your organization. These models are trained on a minimal amount of data.
- model_name: A reference name for the model. Must be unique among the models created in your account. Must not include spaces.
- model_id: A unique ID associated with your model.
- initial_evaluation_metrics: A nested JSON library of evaluation metrics associated with this starter model. As you fine-tune the model with your own data (using the /fine_tune_model endpoint), these metrics will improve.
Use your own internal data on dispatched text messages, the audiences that received them, and the aggregate observed outcomes to improve the model. The data you send to this endpoint will not be accessible in any way to users outside of your organization.
- model_id: Unique ID of the model you wish to fine-tune, as generated by the /create_model endpoint.
- csv_url: Public URL of a CSV with the following fields: text_message, image (optional), audience_size, audience_percent_past_donors (optional), audience_mean_past_donation (optional), donations, amount_raised, opt_outs
- authorize_payment: Boolean (true or false) indicating whether you are approving us to debit your credit balance.
- status: A message indicating whether the payment was successful. Possible values include “success” and “error”.
- error_details: If the payment was unsuccessful, details will be provided.
- credits_used: The number of credits used in this transaction.
- credits_remaining: The number of credits remaining in your account.
Specify a model, high-level audience traits, and a text message. Then receive estimates of how that text message will perform with the given audience.
- model_id: Unique ID first generated by the /create_model endpoint.
- audience_size: The number of people who will receive the text message.
- audience_percent_past_donors: The percent of recipients who have made a known donation in the past. (optional)
- audience_mean_past_donation: The average donation given by text message recipients in the past. (optional)
- text_message: The text message you are intending to evaluate. The format should match the examples used in the /fine_tune_model endpoint.
- image: The URL of any image you might be sending with your text message.
- estimated_donations: The range of donations expected, with an 80% confidence level.
- estimated_amount_raised: The range of total gross returns expected, with an 80% confidence level.
- estimated_opt_outs: The range of opt-outs expected, with an 80% confidence level.