The CURL request:

curl --location 'https://das-api.das.ipobs.acc.web1.wipo.int/das-api/v1/requests/retrievals' \
--header 'Authorization: Bearer <<your authorization token>>' \
--header 'Content-Type: application/json' \
--data '{
    "operationCategory": "retrieval",
    "documentKindCategory": "patent",
  "documentNumber": "<<number of the priority document to retrieve>>",
  "documentDate": "<<date of the priority document to retrieve>>",
  "dasAccessCode": "<<das code for the retrieval>>",
    "applicationCategory": null,
    "applicationNumber": null,
    "applicationFilingDate": null
  }

Request sample:

curl --location 'https://das-api.das.ipobs.acc.web1.wipo.int/das-api/v1/requests/retrievals' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiOiI3bEhXSFovZ1h6ajJ4WFdBcXFQMVRIUDdHZzA9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJkYXMtaWItcGN0MS1hcGktaWQiLCJjdHMiOiJPQVVUSDJfU1RBVEVMRVNTX0dSQU5UIiwiYXVkaXRUcmFja2luZ0lkIjoiZmIwN2I5MjctOTg4MC00ZjM0LTg5YzUtMTgzYmJjODEwYWZhLTY3MzUxNCIsImlzcyI6Imh0dHBzOi8vd3d3NS53aXBvLmludC9hbS9vYXV0aDIiLCJ0b2tlbk5hbWUiOiJhY2Nlc3NfdG9rZW4iLCJ0b2tlbl90eXBlIjoiQmVhcmVyIiwiYXV0aEdyYW50SWQiOiJjSFZ3MDBsMUwzN21ZZHFHZm14RWxDUTNjWkkiLCJhdWQiOiJkYXMtaWItcGN0MS1hcGktaWQiLCJuYmYiOjE2ODAwMTMwODAsImdyYW50X3R5cGUiOiJjbGllbnRfY3JlZGVudGlhbHMiLCJzY29wZSI6WyJkYXMtYXBpL29mZmljZS1leGNoYW5nZSJdLCJhdXRoX3RpbWUiOjE2ODAwMTMwODAsInJlYWxtIjoiLyIsImV4cCI6MTY4MDAxNjY4MCwiaWF0IjoxNjgwMDEzMDgwLCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJzQUtrZWFfMnpQWXhfMnRjR01qT1Vmb0xHTDAifQ.oC6f-HlJC64fmbqZbddssyyLkzihE60lEsSUXQd5fbGMe_Mgq5VBae0KaO4yb5i-A1Pn8rRVrKFQSojFybp_vmVvS40o9xPIt7gCC_CPVvCaQka3BxUXLtWmnWgvLNmMtzjbpCNewT2YhMiZd_UzEuD4vbXTKK2OyGffjeSlLFDQ76AcYX-3pKF304uAe5JROBDjx1oTKa01eNQIFrD2xritOYDgOa8ltf4LUxu66Gard8fLY-lKWxR8uYAwSU3nqJ8TZ3NLv5GCsUTgB1Uwu1D0efPy3q9VLfIuKdNgaUVQO-OljXM59eAM9b5Vu31CBInEaeRxSyfEv9SnlNR1Ww' \
--header 'Content-Type: application/json' \
--data '{
    "operationCategory": "retrieval",
    "documentKindCategory": "patent",
  "documentNumber": "PCT/IB2021/057271",
  "documentDate": "2021-09-06",
  "dasAccessCode": "AB21",
    "applicationCategory": null,
    "applicationNumber": null,
    "applicationFilingDate": null
  }
'

Expected response:

{"operationCategory":"retrieval","documentKindCategory":"patent","documentNumber":"<<number of the priority document to retrieve>>","documentDate":"<<date of the priority document to retrieve>>","dasAccessCode":"<<das code for the retrieval>>","requestAckId":"<<ackId of the request>>","operationDateTime":"<<request datetime>>"}

Sample response:

{"operationCategory":"retrieval","documentKindCategory":"patent","documentNumber":"PCT/IB2021/057271","documentDate":"2021-09-06","dasAccessCode":"AB21","requestAckId":"IBIB20230328000034","operationDateTime":"2023-03-28T14:19:27.869Z"}

The "requestAckId" will be used in the following request, to be able to retrieve the URL for the download of the document.

  • No labels