# Create Invite
Source: https://docs.anthropic.com/en/api/admin-api/invites/create-invite
post /v1/organizations/invites
Usage Tier | Credit Purchase | Max Usage per Month |
---|---|---|
Tier 1 | \$5 | \$100 |
Tier 2 | \$40 | \$500 |
Tier 3 | \$200 | \$1,000 |
Tier 4 | \$400 | \$5,000 |
Monthly Invoicing | N/A | N/A |
tags with newlines for better text formatting
String withLineBreaks = html.replaceAll("
|?p\\s*[^>]*>", "\n");
// Remove remaining HTML tags
String noTags = withLineBreaks.replaceAll("<[^>]*>", "");
// Decode HTML entities (simplified for common entities)
return decodeHtmlEntities(noTags);
}
/**
* Simple HTML entity decoder for common entities
*/
private static String decodeHtmlEntities(String text) {
return text
.replaceAll(" ", " ")
.replaceAll("&", "&")
.replaceAll("<", "<")
.replaceAll(">", ">")
.replaceAll(""", "\"")
.replaceAll("'", "'")
.replaceAll("…", "...")
.replaceAll("—", "—");
}
}
```
Explore optimized prompts for a breadth of business and personal tasks.
Learn at your own pace
Instructor: John Doe
Course description goes here.
Instructor: Jane Smith
Course description goes here.