For AI agents: visit https://ct-oi-api.readme.io/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
Jump to Content
ct-oi-api
GuidesAPI Reference
v1.2

ct-oi-api
Guides
Log In
Jump to Content
ct-oi-api
v1.2GuidesAPI Reference
Log In

Getting Started

  • CharityTracker and Oasis Insight API Documentation
    • 🔍Phone Number Filtering Reference
    • 🛠️How-To Tutorials
      • First Steps
      • Exploring Your Network API with Postman
      • API Limitations
      • How do I create a Case?
      • How do I add Details to a Case?
      • How do I create a Demographic record?
      • How do I add Assistance records to a case?
      • How do I add phone numbers to a case?
      • How do I set the "Total Living in Household" field?
      • How do I set the "County" for a case?
      • How do I get a Case by name, date of birth, etc?
      • How do I get a Case by a phone number?
      • How do I get all Cases entered after a certain date?
      • How do I get all Assistance records entered after a certain date?
      • How do I get the old hyperlink URIs for record references?
Powered by 
  1. Getting Started
  2. CharityTracker and Oasis Insight API Documentation
  3. How-To Tutorials

How do I add phone numbers to a case?

You can submit a POST request with the Case ID to /api/v1/phone_numbers/. The only required fields are case, description, and number.

{
    "case": 1001, 
    "description": "Home Phone", 
    "number": 1234567890
}