Credential
Credentials store keys and passwords that can be used in your automations.
Create a simple credential
If you want to create a credential via SDK, it's simple, you need to use the following method:
maestro.create_credential(label="test", key="test", value="test")
maestro.createCredential("testLabel", "testKey", "testValue");
await maestro.createCredential("test", "test", "test")
await maestro.createCredential("test", "test", "test")
await maestro.CreateCredentialAsync("testLabel", "testKey", "testValue");
Get credential on Maestro
To get the credential it is necessary to use the "get credential" method as follows: