Skip to content

Commit

Permalink
Merge pull request #502 from lifeomic/subject-param
Browse files Browse the repository at this point in the history
feat: add subject param
  • Loading branch information
swain committed Dec 15, 2023
2 parents e944f8e + 6c979ac commit 69c8d63
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/types/rest-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ export type RestAPIEndpoints = FhirAPIEndpoints & {

'GET /v1/fhir/files/projects/:projectId/files/:fileId': {
Request: {
/**
* If accessing a file owned by a subject, it is recommended to
* specify the subject id here.
*/
subject?: string;
/** Specify this value to get a pre-signed download url in response. */
include?: 'downloadUrl';
};
Response: {
Expand Down

0 comments on commit 69c8d63

Please sign in to comment.