Launch Campaigns Status

This endpoint is designed to provide information on campaigns creation process cerated from the Launch API

Endpoint Details

URL: https://api.scalemate.co/api/external/v1/launch/:id Method: GET

Headers

Content-Type: application/json
X-Api-Key: <YOUR_API_KEY>

You can generate the API Key at the Settings page under API Key section.

Parameters

id

ID (required)

Job ID you received from the Launch API

Example cURL Request

curl -X GET "https://your-api-domain.com/api/external/v1/launch/:id" 
-H "X-Api-Key: <YOUR_API_KEY>"

Example Response

{
    "job_id": id,
    "status": "pending" | "completed" | "failed",
    "message": string,
}

Last updated