Delete a Connect Webview
Deletes a Connect Webview.
You do not need to delete a Connect Webview once a user completes it. Instead, you can simply ignore completed Connect Webviews.
Deletes a Connect Webview.
Code:
await seam.connectWebviews.delete({
connect_webview_id: "816f796f-636c-46a9-9fef-7f90ca69e771",
});Output:
// voidDeletes a Connect Webview.
Code:
curl --include --request POST "https://connect.getseam.com/connect_webviews/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"connect_webview_id": "816f796f-636c-46a9-9fef-7f90ca69e771"
}
EOFOutput:
{}Deletes a Connect Webview.
Code:
seam.connect_webviews.delete(connect_webview_id="816f796f-636c-46a9-9fef-7f90ca69e771")Output:
NoneDeletes a Connect Webview.
Code:
seam.connect_webviews.delete(connect_webview_id: "816f796f-636c-46a9-9fef-7f90ca69e771")Output:
nilDeletes a Connect Webview.
Code:
$seam->connect_webviews->delete(
connect_webview_id: "816f796f-636c-46a9-9fef-7f90ca69e771"
);Output:
Deletes a Connect Webview.
Code:
seam connect-webviews delete --connect_webview_id "816f796f-636c-46a9-9fef-7f90ca69e771"Output:
{}Request Parameters
connect_webview_id String (Required)
ID of the Connect Webview that you want to delete.
Response
void
Last updated
Was this helpful?

