APIGet Project Plan

Get Project Plan

Retrieve detailed information about a specific plan.

GET/v2/projects/{project_id}/plans/{plan_id}

Authorization

Bearer TokenRequired

Path Parameters

project_idstringRequired

The unique identifier of the project.

plan_idstringRequired

The unique identifier of the plan.

Request
curl -X GET "https://api.botsubscription.com/v2/projects/YOUR_PROJECT_ID/plans/YOUR_PLAN_ID" \
  -H "Authorization: Bearer YOUR_TOKEN"
Successapplication/json
{
  "ok": true,
  "request_id": "11111111-1111-1111-1111-111111111111",
  "method": "GET",
  "path": "/v2/projects/YOUR_PROJECT_ID/plans/YOUR_PLAN_ID",
  "code": 200,
  "message": "Plan retrieved successfully",
  "data": {
    "plan_name": "Bronze",
    "plan_price": "10",
    "plan_currency": "USD",
    "plan_duration": "1 hour",
    "plan_price_formatted": "$10.00",
    "plan_id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
    "plan_data": {
      "plan_recurring": true,
      "plan_one_time": true
    },
    "plan_targets": [
      {
        "target_name": "Members",
        "platform": "discord",
        "kind": "role",
        "external_id": "123456789012345678",
        "is_enabled": true,
        "target_id": "bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb",
        "parent_target_id": "cccccccc-cccc-cccc-cccc-cccccccccccc",
        "participant_count": 0
      }
    ]
  }
}

Last updated: