Uploaded image for project: 'Document Management System'
  1. Document Management System
  2. DMS-1170

CBES - API to get details and download files of candidate

    Details

    • Type: New Feature
    • Status: Done
    • Priority: Medium
    • Resolution: Done
    • Affects Version/s: None
    • Fix Version/s: Enhancements - Fall
    • Labels:
      None

      Description

      API that can be used to download files related to a specific candidate.

        Attachments

        1. DMS-1170_API_Updated.doc
          24 kB
        2. DMS-1170_API.doc
          24 kB
        3. DMS-1170_ETA.xls
          7 kB
        4. DMS-1170.xls
          11 kB
        5. Screenshot 2019-04-09 at 5.26.41 PM.png
          Screenshot 2019-04-09 at 5.26.41 PM.png
          189 kB
        6. Screenshot 2019-04-10 at 11.38.47 AM.png
          Screenshot 2019-04-10 at 11.38.47 AM.png
          207 kB
        7. Screenshot 2019-04-10 at 11.39.39 AM.png
          Screenshot 2019-04-10 at 11.39.39 AM.png
          211 kB

          Activity

          Hide
          Jilna Jilna (Inactive) added a comment - - edited

          Hi Komal Barde

           

          There will be issues with the "Get details of files related to a specific candidate" when a specific candidate has two release associated with his email address.

          When I fetch documents it will give me all files related to both the releases. What we need would be to fetch files by

          releaseId

          Also, can we have another endpoint to fetch(not download) files by Id?

          Mason Michael Samir Swapnil Pandhare

           

          Show
          Jilna Jilna (Inactive) added a comment - - edited Hi Komal Barde   There will be issues with the "Get details of files related to a specific candidate"  when a specific candidate has two release associated with his email address. When I fetch documents it will give me all files related to both the releases. What we need would be to fetch files by releaseId Also, can we have another endpoint to fetch(not download) files by Id? Mason Michael Samir   Swapnil Pandhare  
          Hide
          komal.barde Komal Barde (Inactive) added a comment - - edited

          Hi Harshveer Singh,

          Please find below details of get file data of candidate API:

          API Endpoint details:
          HTTP Method : GET
          URL : /api/get/candidate/upload/hbcandidate@hb.com/2/1/DMS/filename/ desc

          API Input:

          1. PersonEmail (Required):This will contain person email address whose uploaded file list needs to provide.
          2. PageSize: This will contain no of records to be provided for given page.
          3. PageNumber: This will contain page no to be provided.
          4. SearchTerm: This will contain string that will be used to search data in list.
          5. Sortcolumn: This will be used to sort candidates uploaded file(s) list by specific column and this will contain – filename, uploadedby, datetime, description, orderID, releaseID .
          6. Sortby: This will be used to sort candidates uploaded file(s) list in ascending or descending order and this will contain – asc, desc .

          API Return value:

          List of candidate uploaded files and total no of records

          API Success Response:
          On success following response will be returned:
          HTTP/1.1 200
          {
          "data": [
          {
          "UploadFileobj":

          { "file_name": "CandiadateProfile.doc", "file_description": "Candidate Profile File", "file_content": null, "orderID": 1, "releaseID": 2, "uploaderusername": "Career Builder" }

          ,

          "attchementID": 231,
          "CreatedDateTime": "2019-04-29T12:19:47"
          },
          {
          "UploadFileobj":

          { "file_name": "CandiadateEmplyment.pdf", "file_description": "Candidate Emplyment File", "file_content": null, "orderID": 3, "releaseID": 4, "uploaderusername": "You" }

          ,
          "attchementID": 232,
          "CreatedDateTime": "2019-04-29T12:22:32"
          }
          ],
          "noofrecords": 5
          }

          Thanks,
          Komal
          CC:Swapnil Pandhare, Ganesh Sadawarte,Samir

          Show
          komal.barde Komal Barde (Inactive) added a comment - - edited Hi  Harshveer Singh , Please find below details of get file data of candidate API: API Endpoint details: HTTP Method : GET URL : /api/get/candidate/upload/hbcandidate@hb.com/2/1/DMS/filename/ desc API Input: PersonEmail (Required):This will contain person email address whose uploaded file list needs to provide. PageSize: This will contain no of records to be provided for given page. PageNumber: This will contain page no to be provided. SearchTerm: This will contain string that will be used to search data in list. Sortcolumn: This will be used to sort candidates uploaded file(s) list by specific column and this will contain – filename, uploadedby, datetime, description, orderID, releaseID . Sortby: This will be used to sort candidates uploaded file(s) list in ascending or descending order and this will contain – asc, desc . API Return value : List of candidate uploaded files and total no of records API Success Response: On success following response will be returned: HTTP/1.1 200 { "data": [ { "UploadFileobj": { "file_name": "CandiadateProfile.doc", "file_description": "Candidate Profile File", "file_content": null, "orderID": 1, "releaseID": 2, "uploaderusername": "Career Builder" } , "attchementID": 231, "CreatedDateTime": "2019-04-29T12:19:47" }, { "UploadFileobj": { "file_name": "CandiadateEmplyment.pdf", "file_description": "Candidate Emplyment File", "file_content": null, "orderID": 3, "releaseID": 4, "uploaderusername": "You" } , "attchementID": 232, "CreatedDateTime": "2019-04-29T12:22:32" } ], "noofrecords": 5 } Thanks, Komal CC: Swapnil Pandhare , Ganesh Sadawarte , Samir
          Show
          komal.barde Komal Barde (Inactive) added a comment - Hi  Harshveer Singh , Can you please look into Jilna 's  https://jira.workterra.net/browse/DMS-1170?focusedCommentId=264175&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-264175  comment ? Thanks, Komal CC:  Swapnil Pandhare ,  Ganesh Sadawarte ,  Samir ,  Jilna
          Hide
          harshveer.singh Harshveer Singh (Inactive) added a comment - - edited

          Created PR: https://github.com/cbdr/DMS/pull/612

          API EndPoint is : /api/candidateattachments?page=1&count=10&sortorder=asc&sortcolumn=&searchterm=&releaseid=0&orderid=0

          Above specified are the query string parameters supported with default values. Either releaseid or orderid parameter must be specified to filter otherwise no results will be retured.

          Values for sortOrder is 'asc' or 'desc', and possible values for sortcolumn are: filename, uploadedby, datetime, description, orderid, releaseid

           

           CC Samir, Jilna

          Show
          harshveer.singh Harshveer Singh (Inactive) added a comment - - edited Created PR:  https://github.com/cbdr/DMS/pull/612 API EndPoint is : /api/candidateattachments?page=1&count=10&sortorder=asc&sortcolumn=&searchterm=&releaseid=0&orderid=0 Above specified are the query string parameters supported with default values. Either releaseid or orderid parameter must be specified to filter otherwise no results will be retured. Values for sortOrder is 'asc' or 'desc', and possible values for sortcolumn are: filename, uploadedby, datetime, description, orderid, releaseid    CC Samir , Jilna
          Hide
          priya.dhamande Priya Dhamande (Inactive) added a comment -

          No Testing required from Qa end, So, marking jira done.

          Show
          priya.dhamande Priya Dhamande (Inactive) added a comment - No Testing required from Qa end, So, marking jira done.

            People

            Assignee:
            priya.dhamande Priya Dhamande (Inactive)
            Reporter:
            swapnil.pandhare Swapnil Pandhare (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

              Dates

              Created:
              Updated:
              Resolved:

                Time Tracking

                Estimated:
                Original Estimate - 24h
                24h
                Remaining:
                Remaining Estimate - 0h
                0h
                Logged:
                Time Spent - 22h Time Not Required
                22h