keychain
Authenticate Service
Verifies authentication elements against stored keychain item.
POST
/
api
/
keychain
/
authenticate
Copy
curl --request POST \
--url http://localhost:4242/{computer_name}/api/keychain/authenticate \
--header 'Content-Type: application/json' \
--data '{
"authElements": [
{
"type": "username",
"value": "user@example.com"
},
{
"type": "password",
"value": "secret123"
}
],
"service": "github"
}'
Copy
true
Body
application/json
Response
200
application/json
Successfully performed authentication
The response is of type boolean
.
Copy
curl --request POST \
--url http://localhost:4242/{computer_name}/api/keychain/authenticate \
--header 'Content-Type: application/json' \
--data '{
"authElements": [
{
"type": "username",
"value": "user@example.com"
},
{
"type": "password",
"value": "secret123"
}
],
"service": "github"
}'
Copy
true
Assistant
Responses are generated using AI and may contain mistakes.