Deletes a specified credential.
POST /acs/credentials/delete ⇒ void
Authentication Methods
Personal access token
Must also include the seam-workspace
header in the request.
To learn more, see Authentication.
Request Parameters
acs_credential_id
String (Required)
ID of the credential that you want to delete.
Response
void
Examples
Delete a credential
Specify the desired acs_credential_id
to delete the specified credential.
Code
await seam.acs.credentials.delete({
acs_credential_id: "66666666-6666-6666-6666-666666666666",
});
Output
Code
seam.acs.credentials.delete(acs_credential_id="66666666-6666-6666-6666-666666666666")
Output
Code
seam.acs.credentials.delete(acs_credential_id: "66666666-6666-6666-6666-666666666666")
Output
Code
<?php
$seam->acs->credentials->delete(
acs_credential_id: "66666666-6666-6666-6666-666666666666"
);
Output
Code
seam acs credentials delete --acs_credential_id "66666666-6666-6666-6666-666666666666"
Output
Code
package main
import api "github.com/seamapi/go"
import credentials "github.com/seamapi/go/credentials"
func main() {
client.Acs.Credentials.Delete(
context.Background(),
credentials.CredentialsDeleteRequest{
AcsCredentialId: api.String("66666666-6666-6666-6666-666666666666"),
},
)
}
Output
Code
curl --include --request POST "https://connect.getseam.com/acs/credentials/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_credential_id": "66666666-6666-6666-6666-666666666666"
}
EOF
Output