Copy PATCH /acs/credentials/update ⇒ void
Updates the code and ends at date and time for a specified credential .
JavaScript Python Ruby PHP Seam CLI Go
Request
Copy await seam . acs . credentials .update ({
acs_credential_id : "66666666-6666-6666-6666-666666666666" ,
code : "7890" ,
});
Response
Request
Copy seam . acs . credentials . update (
acs_credential_id = "66666666-6666-6666-6666-666666666666" , code = "7890"
)
Response
Request
Copy seam . acs . credentials . update(acs_credential_id: "66666666-6666-6666-6666-666666666666" , code: "7890" )
Response
Request
Copy <? php
$seam -> acs -> credentials -> update (
acs_credential_id : "66666666-6666-6666-6666-666666666666" ,
code : "7890"
) ;
Response
Request
Copy seam acs credentials update --acs_credential_id "66666666-6666-6666-6666-666666666666" --code "7890"
Response
Request
Copy package main
import api "github.com/seamapi/go"
import credentials "github.com/seamapi/go/credentials"
func main () {
client.Acs.Credentials. Update (
context. Background (),
credentials . CredentialsUpdateRequest {
AcsCredentialId: api. String ( "66666666-6666-6666-6666-666666666666" ),
Code: api. String ( "7890" ),
},
)
}
Response
Request Parameters
acs_credential_id
Type: string
Required: Yes
ID of the desired credential.
code
Type: string
Required: No
Replacement access (PIN) code for the credential.
ends_at
Type: string
Required: No
Replacement date and time at which the validity of the credential ends, in ISO 8601 format. Must be a time in the future and after the starts_at
value that you set when creating the credential.
Return Type
void