Skip to main content
POST
/
create-campaign
Create or update a campaign
curl --request POST \
  --url https://api.wanderersguide.app/functions/v1/create-campaign \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "id": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "description": {
    "contents": {}
  },
  "join_key": "<string>",
  "notes": {},
  "recommended_options": {},
  "recommended_variants": {},
  "recommended_content_sources": {
    "enabled": [
      123
    ]
  },
  "custom_operations": [
    {}
  ],
  "meta_data": {}
}
'
{
  "status": "success",
  "data": {
    "name": "<string>",
    "id": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "description": {
      "contents": {}
    },
    "join_key": "<string>",
    "notes": {},
    "recommended_options": {},
    "recommended_variants": {},
    "recommended_content_sources": {
      "enabled": [
        123
      ]
    },
    "custom_operations": [
      {}
    ],
    "meta_data": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wanderersguide.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key created in your Wanderer's Guide account settings. Send as Authorization: Bearer <key>. Used for direct API access from external tools and scripts.

Body

application/json
name
string
required
id
integer
created_at
string<date-time>
user_id
string<uuid>
description
object
join_key
string
notes
object
custom_operations
object[]
meta_data
object

Response

200 - application/json

JSend envelope.

status
enum<string>
Available options:
success
data