Hello group, I have the following problem, I want to have access to these fields.
The fields are 0081 InstitutionAddress
1010 StationName.
The API does not allow me to access these fields
The reason is that the user has several x-ray machines and wants to know from which machine the examination was carried out.
What do you recommend
Regards
Hello @vgonzales !
Do you know that there is a complete API documentation online ?
It’s located here: https://api.orthanc-server.com/
For example you can extract de whole DICOM tag list for an instance by using:
https://api.orthanc-server.com/#tag/Instances/paths/~1instances~1{id}~1tags/get
You can also retrieve all the tags from all the instances in a series by using:
https://api.orthanc-server.com/#tag/Series/paths/~1series~1{id}~1instances/get
On those API Orthanc will expose all the tags he can for the related resource. To find the resource Orthanc identifier you must use the lookup API:
https://api.orthanc-server.com/#tag/System/paths/~1tools~1find/post
I hope this helps ^^
Stephane