Skip to content

Passwords API

Robert Durfee edited this page Apr 12, 2020 · 9 revisions

REST API for remote encrypted password storage.

(The REST API code can be found here.)

Service: api.passwords.durfee.io

The Passwords API is provided by this service. It is recommended to use the provided command-line interface. If your application needs to call this service using your own libraries, you should use the following information when making the API requests.

Note: If you use this service directly, you are responsible for managing password encryption. This service assumes provided information is already encrypted.

Service Endpoint

The service endpoint is the base URL that specifies the network address of the API service. This service has the following endpoint and all URIs below are relative to this service endpoint:

https://api.passwords.durfee.io

REST Resource: accounts

Methods
delete DELETE /accounts/{resourceId}

Deletes the specified account resource.
get GET /accounts/{resourceId}

Returns the specified account resource.
insert POST /accounts

Creates an account resource using the data included in the request.
list GET /accounts

Retrieves the list of account resources.
setPassword POST /accounts/{resourceId}/setPassword

Sets an account resource's password.
setUsername POST /accounts/{resourceId}/setUsername

Sets an account resource's username.