Last updated 13 days ago
Was this helpful?
POST /acs/credentials/delete ⇒ void
Deletes a specified .
Request
await seam.acs.credentials.delete({ acs_credential_id: "66666666-6666-6666-6666-666666666666", });
Response
// void
seam.acs.credentials.delete(acs_credential_id="66666666-6666-6666-6666-666666666666")
None
seam.acs.credentials.delete(acs_credential_id: "66666666-6666-6666-6666-666666666666")
nil
<?php $seam->acs->credentials->delete( acs_credential_id: "66666666-6666-6666-6666-666666666666" );
null
seam acs credentials delete --acs_credential_id "66666666-6666-6666-6666-666666666666"
{}
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"), }, ) }
API key
Personal access token Must also include the seam-workspace header in the request.
seam-workspace
acs_credential_id
Format: UUID Required: Yes
UUID
ID of the desired credential.
void