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
      POST
    • Activate campaign
      POST
    • Pause campaign
      POST
  • 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
  • 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
  • Analytics
    • Get campaign summary
    • Get campaign count (deprecated)
    • Get campaign stats
    • Get all campaigns statistics
  • Unibox
    • Get emails
    • Get count of unread emails
    • Reply to an email
    • Forward an existing email
    • Mark email read
  • 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
    • Add a new webhook
    • List webhooks
    • Delete webhook(s)
  • Tag
    • List Tags
  • For Email Infra Provider Partner
    • List workspaces
      POST
    • Initiate Google OAuth login flow
      POST
    • Initiate Microsoft OAuth login flow
      POST
    • Bulk Add SMTP Accounts (via Username and Password)
      POST
  1. For Email Infra Provider Partner

List workspaces

POST
https://api.plusvibe.ai/v1/webhook/partner-list-workspace
For Email Infra Provider Partner
These endpoints allow email infrastructure provider partners to programmatically initiate the Google/Microsoft OAuth login flow to add an account to PlusVibe.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.plusvibe.ai/v1/webhook/partner-list-workspace' \
--header 'Content-Type: application/json' \
--data-raw '{
    "flow": "app_user",
    "pipl_username": "user@email.com",
    "pipl_password": "A1b2c3d4!"
}'
Response Response Example
{
    "code": 1,
    "message": "success",
    "data": [
        {
            "org_id": "65099a0dd96fae8ab61130be",
            "workspace_id": "66c5860c0d3839cddfe96a31",
            "workspace_name": "Example Workspace Name",
            "workspace_status": "ACTIVE"
        }
    ]
}

Request

Body Params application/json
flow
string 
required
Flow type. Currently only "app_user" is supported.
Example:
app_user
pipl_username
string <email>
required
Login Email
Example:
user@email.com
pipl_password
string 
required
Password
Example:
A1b2c3d4!
Examples

Responses

🟢200OK
application/json
Successfully listed workspaces
Body
code
integer 
optional
Example:
1
message
string 
optional
Example:
success
data
array [object {4}] 
optional
org_id
string 
optional
Owner Organization of the workspace
Example:
65099a0dd96fae8ab61130be
workspace_id
string 
optional
Workspace Id
Example:
66c5860c0d3839cddfe96a31
workspace_name
string 
optional
Workspace Name
Example:
Example Workspace Name
workspace_status
string 
optional
Workspace Status
Example:
ACTIVE
Modified at 2025-05-24 05:40:10
Previous
For Email Infra Provider Partner
Next
Initiate Google OAuth login flow
Built with