4.4.3 Other Available Operations
4.4.3.1 Get defined data file sets in the system
This request can be used to fetch the details of all the available data file sets in the system. This is a URI based request (/datafilesets) and supports pagination.
4.4.3.2 Get details of a data file set
This request can be used to fetch the details of data file sets in the system. This is a URI based request. The URI must have the following pattern: /datafilesets/{datafilesetcode}
The response to this request will have the following structure:
<dataFileSet code='' description='' locked='N'> <dataFiles> <dataFile code ='' description ='' contentLength='' filePath=''> <links> <link rel='file' href='/datafilesets/{datafilesetcode}/datafiles/{datafilecode}/data'/> </links> </datafile> .... </dataFiles> </dataFileSet>
4.4.3.3 Get details of a data file
This request can be used to download the contents of a data file in the system. This is a URI based request. The URI must have the following pattern: /datafilesets/{datafilesetcode}/datafiles/{datafilecode}/data
4.4.3.4 Update details of a data file set
This request can be used to update the details of a data file set in the system. The URI will have the following pattern: /datafilesets
The Request / Response xml structures are the same as for creating a data file set.
4.4.3.5 Update details of a data file in a data file set
This request can be used to update the details of a data file in the system. The URI will have the following pattern: /datafilesets/{datafilesetcode}/datafiles/
The Request / Response xml structures are the same as for creating a file within data file set.
4.4.3.6 Delete a data file set
This request can be used to delete a data file set in the system. This is a URI based request. The URI will have the following pattern : /datafilesets/{datafilesetcode}/
The response message structure will be as specified in Response Messages.
4.4.3.7 Delete a data file in a data file set
This request can be used to delete the details of a data file in a data file set in the system. URI will have pattern: /datafilesets/{datafilesetcode}/datafiles/{datafilecode}
The response message structure will be as specified in Response Messages.
For details on how attributes in the request messages are handled, refer to the Attribute Handling.