Delete
Delete an app.
Parameters
idstring
The id field.
bodyBodyfieldAppDeleteParams
Returns
AppDeleteResponseinterface
Empty response body. Status code indicates success.
Request example Go
package main
import (
"context"
"fmt"
"github.com/stainless-sdks/-go"
"github.com/stainless-sdks/-go/option"
)
func main() {
client := conductoronesdk.NewClient(
option.WithAPIKey("My API Key"),
)
app, err := client.Apps.Delete(
context.TODO(),
"id",
conductoronesdk.AppDeleteParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", app)
}
200 Example
{}