S
Samva
S
Samva
DashboardAPISamva DocumentationQuickstart GuideAuthentication

API Reference

Email Management

Conversation Management

Bulk Import ParticipantsCreate ParticipantGet ParticipantGet Participant EngagementList ParticipantsRemove ParticipantUpdate Participant

Configuration

Analytics & Operations

OpenAPI Specification
API ReferenceParticipants

Bulk Import Participants

POST
/participants/bulk-import

Authorization

apiKey
X-API-Key<token>

API key for authentication

In: header

Request Body

application/json

participants*
Items1 <= items <= 1000

Response Body

application/json

curl -X POST "https://samva.app/api/v1/participants/bulk-import" \  -H "Content-Type: application/json" \  -d '{    "participants": [      {        "name": "string"      }    ]  }'
{
  "total": 0,
  "created": 0,
  "skipped": 0,
  "errors": 0,
  "results": [
    {
      "index": 0,
      "status": "created",
      "participantId": "9f6624b5-5f99-42b6-899f-30f2b369cbd7",
      "error": "string"
    }
  ]
}

Update Conversation

Previous Page

Create Participant

Next Page

curl -X POST "https://samva.app/api/v1/participants/bulk-import" \
  -H "Content-Type: application/json" \
  -d '{
    "participants": [
      {
        "name": "string"
      }
    ]
  }'