Campaigns
Archive a campaign
Soft-deletes a campaign by setting an archivedAt timestamp. The campaign can be restored later.
Authorization
ApiKeyAuth X-API-Key<token>
API key generated from your Leadsail dashboard Settings page
In: header
Path Parameters
campaignId*string
The campaign ID
Response Body
application/json
application/json
application/json
package mainimport ( "fmt" "net/http" "io/ioutil")func main() { url := "https://api.leadsail.app/api/v1/campaigns/string/archive" req, _ := http.NewRequest("POST", url, nil) res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body))}{
"success": true,
"message": "string"
}{
"success": false,
"error": {
"code": "UNAUTHORIZED",
"message": "Authentication required"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}