Delete a Credential
POST /acs/credentials/delete ⇒ voidDeletes a specified credential.
Request
await seam.acs.credentials.delete({
acs_credential_id: "66666666-6666-6666-6666-666666666666",
});Response
// voidRequest
seam.acs.credentials.delete(acs_credential_id="66666666-6666-6666-6666-666666666666")Response
NoneRequest
seam.acs.credentials.delete(acs_credential_id: "66666666-6666-6666-6666-666666666666")Response
nilRequest
<?php
$seam->acs->credentials->delete(
acs_credential_id: "66666666-6666-6666-6666-666666666666"
);Response
nullRequest
seam acs credentials delete --acs_credential_id "66666666-6666-6666-6666-666666666666"Response
{}Request
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"),
},
)
}Response
nilAuthentication Methods
API key
Personal access token Must also include the
seam-workspaceheader in the request.
Request Parameters
acs_credential_id
acs_credential_idType: string Required: Yes
ID of the desired credential.
Return Type
void
Last updated
Was this helpful?

