PlusVibe.ai
  1. For Email Infra Provider Partner
PlusVibe.ai
  • PlusVibe.ai API Documentation
  • Workspace
    • Get workspaces
      GET
    • Add a new workspace
      POST
  • Campaign
    • Create a new campaign
      POST
    • Create a new subsequence
      POST
    • List campaigns (deprecated)
      GET
    • List all campaigns
      GET
    • Get campaign name
      GET
    • Get campaign status
      GET
    • Get campaign email accounts
      GET
    • Get campaign emails
      GET
    • Set campaign name
      POST
    • Set campaign Schedules (deprecated)
      POST
    • Activate campaign
      POST
    • Pause campaign
      POST
    • Update Campaign
      PATCH
    • Delete or archive a campaign
      DELETE
  • Lead
    • Add leads to a campaign
      POST
    • Add leads to a subsequence campaign
      POST
    • Get or search for lead
      GET
    • Delete leads from a campaign
      POST
    • Lead Variable/Label Update or Add
      POST
    • Fetch workspace leads
      GET
    • Update the status of a lead
      POST
    • Get lead counts by status
      GET
  • Email Account
    • List all email accounts in the workspace
    • Get email account status
    • Check account vitals
    • Enable Email account warmup
    • Pause Email account warmup
    • Delete Email account
    • Get Warmup Stats (Individual Account)
    • Get Warmup Stats (Workspace-Level)
    • Bulk Add SMTP Accounts
    • Bulk Update Email Accounts
    • Bulk Update Email Account Warmup Status
    • Bulk Assign/Remove Tags from Email Accounts
    • Bulk reconnect email accounts
  • Analytics
    • Get campaign summary
    • Get campaign count (deprecated)
    • Get campaign stats
    • Get all campaigns statistics
  • Unibox
    • Get emails
    • Get emails in Others folder
    • Get count of unread emails
    • Reply to an email
    • Forward an existing email
    • Compose New Email
    • Mark Email Read
    • Save Email as Draft
    • Delete an Entire Email Thread
    • Delete a Single Email Message
  • Blocklist
    • Get entries in the blocklist
    • Adds entries to the blocklist
    • Delete entries in the blocklist
  • Webhook
    • PlusVibe Webhook Overview
    • Sample Payload - FIRST_EMAIL_REPLIES, ALL_EMAIL_REPLIES, ALL_POSITIVE_REPLIES
    • Sample Payload - LEAD_MARKED_AS_INTERESTED
    • Sample Payload - EMAIL_SENT
    • Sample Payload - BOUNCED_EMAIL
    • Add a new webhook
    • List webhooks
    • Delete webhook(s)
  • Tags
    • List Tags
    • Create a New Tag
    • Update an Existing Tag
    • Delete Multiple Tags
  • Client Access
    • Create client
    • Edit client
    • Update client status
    • List clients
    • Delete client
  • For Email Infra Provider Partner
    • List workspaces
      POST
    • List all email accounts in the workspace
      GET
    • Initiate Google OAuth login flow
      POST
    • Initiate Microsoft OAuth login flow
      POST
    • Bulk Add SMTP Accounts (via Username and Password)
      POST
  • Schemas
    • Schemas
      • ScheduleV2
      • EmailAccountId
      • DeleteCampaignRequest
      • ObjectId
      • SequenceStep
      • BulkReconnectRequest
      • HexColor
      • TagAction
      • WarmupStatus
      • BulkTagAssignmentRequest
      • CreateTagRequest
      • BulkUpdateWarmupRequest
      • Variation
      • Campaign
      • SuccessResponse
      • UpdateTagRequest
      • ErrorResponse
      • DeleteTagsRequest
    • ClientWorkspacePermission
    • CreateClientRequest
    • CreateClientResponse
    • UpdateClientRequest
    • ClientListItem
    • PatchClientStatusRequest
    • GenericSuccessResponse
  1. For Email Infra Provider Partner

Initiate Google OAuth login flow

POST
https://api.plusvibe.ai/v1/webhook/partner-google-oauth-url
These endpoints allow email infrastructure provider partners to programmatically initiate the Google/Microsoft OAuth login flow to add an account to PlusVibe.

Request

Authorization
Body Params application/json

Examples

Responses

🟢200OK
application/json
Successfully generated redirect URL for OAuth
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.plusvibe.ai/v1/webhook/partner-google-oauth-url' \
--header 'Content-Type: application/json' \
--data-raw '{
    "flow": "app_user",
    "pipl_username": "pv@username.com",
    "pipl_password": "fuibrn567",
    "workspace_id": "65099a0dd96fae8ab61120c0",
    "min_interval": 4,
    "daily_limit": 30,
    "enable_camp_rampup": "yes",
    "camp_ramup_start": 4,
    "camp_rampup_increment": 2,
    "enable_warmup": "yes",
    "warmup_daily_limit": 20,
    "enable_warmup_rampup": "yes",
    "warmup_rampup_start": 5,
    "warmup_rampup_increment": 1
}'
Response Response Example
{
    "code": 1,
    "message": "success",
    "data": {
        "redirect_url": "https://accounts.google.com/o/oauth2/v2/auth?access_type=offline&prompt=consent&include_granted_scopes=true&scope=profile%20email%20https%3A%2F%2Fmail.google.com&state=...&response_type=code&client_id=...&redirect_uri=...",
        "client_id": "550255402234-v3e4mu3ugkvrl2ngaai0nnsv5nll1nm7.apps.googleusercontent.com"
    }
}
Modified at 2025-11-22 13:33:39
Previous
List all email accounts in the workspace
Next
Initiate Microsoft OAuth login flow
Built with