san
san

Reputation: 1

Asymmetrik/node-fhir-server-mongo, how to enable post operation

I have set up Asymetric fhir server mongo implementation described here https://github.com/Asymmetrik/node-fhir-server-mongo, by default it supports GET and PUT operations. Just wondering how to enable POST operations.

Upvotes: 0

Views: 334

Answers (1)

Robert-W
Robert-W

Reputation: 1541

Doing POST depends on the operation and route, see this route config for which operations support post, https://github.com/Asymmetrik/node-fhir-server-core/blob/master/src/server/route.config.js. In short, operation post, create, and search all support the POST method.

Upvotes: 0

Related Questions