Questions tagged [truevault]

TrueVault offers healthcare applications a secure HIPAA compliant API to store health data.

TrueVault is a secure data vault. It is designed from the ground up to provide regulatory compliant storage for Protected Health Information (PHI) and Personally Identifiable Information (PII).

27 questions
9
votes
1 answer

Using express how to send blob object as response

Im using express and truevault to store images in my server. From the truevault api I get a blob object that looks like this { blob: Blob { [Symbol(type)]: 'image/png', [Symbol(buffer)]: }, contentType: 'image/png', …
Nowfal
  • 93
  • 1
  • 1
  • 4
8
votes
2 answers

HIPAA compliance cloud server setups

There's a recent startup out of YC which seems interesting called Truevault.com, which allows you to store JSON documents in their database via an API and is HIPAA compliant. I am working on a healthcare app, and am wondering which is a better…
Dave Tsay
  • 409
  • 1
  • 6
  • 14
3
votes
2 answers

Can A Mobile Application use TrueVault to store JSON data without a "middleman" server?

I have been reading the documentation at https://docs.truevault.com/ but I am a little confused. I read this on the true vault site: If you plan on using any of the server-side libraries, please ensure any hosting environment you use is HIPAA…
Eamonn
  • 838
  • 9
  • 10
3
votes
1 answer

How to integrate Parse with third party user authentication service?

I am building a mobile app in which the users need to be authenticated via TrueVault which is a HIPAA compliant data store. TrueVault offers a REST API and generate an access token post basic authentication. They have endpoints to check token…
smaira
  • 307
  • 4
  • 19
2
votes
1 answer

Downloading Blobs from TrueVault with spaces in the filename

I'm using the TrueVault REST API to upload/download Blobs per the documentation at https://docs.truevault.com/Files To download an existing Blob, I'm passing the Blob URL directly to the client's web browser (Firefox) via a PHP Header redirect. The…
jsonsmth
  • 21
  • 3
2
votes
2 answers

Are any Health Information Exchanges' APIs documented?

I was uncertain of the correct site in StackExchange to ask this but since it's about APIs I just went with Stack Overflow. In the US currently more and more States and companies are setting up Health Information Exchanges to electronically exchange…
simontemplar
  • 885
  • 1
  • 10
  • 17
1
vote
1 answer

How can I send a POST request to start a password reset flow using axios

I'm implementing the Forgot password feature using truevault API. Now, I've been testing the requests following the flow with Postman, and it works, but, when I started coding using axios, it keeps throwing issues about authentication. I've tried…
gustavexx
  • 25
  • 1
  • 5
1
vote
2 answers

Searching TrueVault always returns INVALID_SEARCH_QUERY

Dead simple search query only using required fields: { schema_id: 'xxxxxxxx-8b39-427a-8fb8-c764957fd9c6', filter: { last_name: { type: 'not', value: 'Smith' } } } POSTing to…
Alex Polkhovsky
  • 3,340
  • 5
  • 29
  • 37
1
vote
1 answer

How to do search in Users schema in TrueVault?

In my application a provider will be linked to many clients. Now I want to search all the clients of a particular provider. Both client and providers are storing in user's schema. Can anybody please guide me how to do search in user's schema so that…
Tarun
  • 53
  • 4
1
vote
3 answers

"Failed to parse UUID" error message on attempting to login via TrueVault api

On attempting to login via the truvault api using angular js, I am getting this error message: Failed to parse UUID. I am passing the username, password and account_id as params. I am successful using the curl command and get the success…
orthodoc
  • 31
  • 5
1
vote
1 answer

Reading user attributes

So on create/update methods, there's a attributes param, described as "base64 encoded JSON document describing the user attributes". However, on both the read user and the auth/me endpoints, it doesn't return the attributes. How can we retrieve the…
1
vote
1 answer

Does TrueVault support oAuth?

Does TrueVault have oAuth built into it? Can I show a button on my webapp that says "Login via TrueVault"? I'm trying to add third party auth to Parse. https://parse.com/tutorials/adding-third-party-authentication-to-your-web-app
smaira
  • 307
  • 4
  • 19
1
vote
3 answers

Does using TrueVault automatically make my web app HIPAA compliant?

I am working on a health startup that deals with personal records of patients and it is essential for us to be HIPAA Complaint. I heard of TrueVault, a company that provides RESTful API for transfer of data. Does using TrueVault for this…
user3720088
  • 93
  • 1
  • 5
0
votes
1 answer

How to fetch user using the TrueVault API

I'm trying to fetch a user from the TrueVault API using curl. I've been using the following curl command (as per the documentation): curl https://api.truevault.com/v2/users/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx7ce \ -X GET \ -u…
gustavexx
  • 25
  • 1
  • 5
0
votes
1 answer

TrueVault BLOB to file in node

How do I convert/write BLOB objects returned from truevault to files in a nodejs server. const data = (res.blob).toString('binary') const buf = new Buffer(data) fs.writeFileSync("out.js", buf) When I run this I get [object Blob] in the out.js file.
Nowfal
  • 93
  • 1
  • 1
  • 4
1
2