Assign a Credential to an ACS User
PATCH /acs/credentials/assign β voidAssigns a specified credential to a specified ACS user.
Request
await seam.acs.credentials.assign({
acs_user_id: "33333333-3333-3333-3333-333333333333",
acs_credential_id: "66666666-6666-6666-6666-666666666666",
});Response
// voidRequest
seam.acs.credentials.assign(
acs_user_id="33333333-3333-3333-3333-333333333333",
acs_credential_id="66666666-6666-6666-6666-666666666666",
)Response
NoneRequest
seam.acs.credentials.assign(
acs_user_id: "33333333-3333-3333-3333-333333333333",
acs_credential_id: "66666666-6666-6666-6666-666666666666",
)Response
nilRequest
Response
Request
Response
Request
Response
Authentication 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.
acs_user_id
acs_user_idType: string Required: Yes
ID of the desired user.
Return Type
void
Last updated
Was this helpful?

