The CURL request:

curl --location 'https://das-api.das.ipobs.acc.web1.wipo.int/das-api/v1/requests/registrations' \
--header 'Authorization: Bearer <<your authorization code>>' \
--header 'Content-Type: application/json' \
--data '{
  "operationCategory": "registration",
  "documentKindCategory": "<<patent or utility model>>",
  "documentNumber": "<<your priority number>>",
  "documentDate": "<<your priority date>>",
  "dasAccessCode": "<<the selected access code>>",
  "applicationCategory": "priority document",
  "applicationNumber": "<<application number>>",
  "applicationFilingDate": "<<application/filing date>>",
  "email": null,
  "fileId": "<<the fileId obtained during a previous request>>"
}
'

Request sample:

curl --location 'https://das-api.das.ipobs.acc.web1.wipo.int/das-api/v1/requests/registrations' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiOiI3bEhXSFovZ1h6ajJ4WFdBcXFQMVRIUDdHZzA9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJkYXMtaWItcGN0MS1hcGktaWQiLCJjdHMiOiJPQVVUSDJfU1RBVEVMRVNTX0dSQU5UIiwiYXVkaXRUcmFja2luZ0lkIjoiZmIwN2I5MjctOTg4MC00ZjM0LTg5YzUtMTgzYmJjODEwYWZhLTY0NTIxOSIsImlzcyI6Imh0dHBzOi8vd3d3NS53aXBvLmludC9hbS9vYXV0aDIiLCJ0b2tlbk5hbWUiOiJhY2Nlc3NfdG9rZW4iLCJ0b2tlbl90eXBlIjoiQmVhcmVyIiwiYXV0aEdyYW50SWQiOiJzdWxtenhFWl96SE4xdWhIMFJmZFM1UWFoMDQiLCJhdWQiOiJkYXMtaWItcGN0MS1hcGktaWQiLCJuYmYiOjE2ODAwMDc4ODEsImdyYW50X3R5cGUiOiJjbGllbnRfY3JlZGVudGlhbHMiLCJzY29wZSI6WyJkYXMtYXBpL29mZmljZS1leGNoYW5nZSJdLCJhdXRoX3RpbWUiOjE2ODAwMDc4ODEsInJlYWxtIjoiLyIsImV4cCI6MTY4MDAxMTQ4MSwiaWF0IjoxNjgwMDA3ODgxLCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJZYzJlelk3dWEyZ2YwVFpMc1ozaWxQR0VjUFEifQ.kLNpat2P6wVy7r6SdJd1oBHzPD8uTKKvgAv0UU-dX80LVT1JIUPp1Ti0Hc2i_rr4y2BDaafLfymm4LWVoRovvT8NLeq6j3OY7Xu5qqx4XhjDijclGtImxQQPRdVuw97G8R8yA4TkDneq1fOBSo7fIHtXDxmm7ag7nnogzcuS0mkA6SzLdFuBvkdlvCKwHlHjMJF6Ebzgg89VS6rDEW8Wie6SURExmTiZPICADhrW6QT3KqkZQ4-RWMU9gJXAXkSW3CX1ErMk5gwS9BiIer2oR_ndoyCkqTNHAqfkjBioEewZBAahqfSCO0kzv1DZcS1k_n12RPkTuljCWrVSa7I1bA' \
--header 'Content-Type: application/json' \
--data '{
"operationCategory": "registration",
"documentKindCategory": "patent",
"documentNumber": "PCT/IB2021/000002",
"documentDate": "2021-08-06",
"dasAccessCode": "AB21",
"applicationCategory": "priority document",
"applicationNumber": "PCT/IB2022/000002",
"applicationFilingDate": "2022-08-18",
"email": null,
"fileId": "833b7a25-a5c0-437c-af1b-18236cd1329b"
}
'

Expected response:

{"operationCategory":"registration","documentKindCategory":"<<patent or utility model>>","documentNumber":"PCT/IB2021/000002","documentDate":"2021-08-06","dasAccessCode":"AB21","applicationCategory":"priority document","applicationNumber":"PCT/IB2022/000002","applicationFilingDate":"2022-08-18","email":null,"fileId":"833b7a25-a5c0-437c-af1b-18236cd1329b","documentCodeCategory":"priority document","requestAckId":"IBIB20230328000031","operationDateTime":"2023-03-28T13:01:49.029Z","requestStatusCategory":"registration - recorded"}

Sample response:

{"operationCategory":"registration","documentKindCategory":"patent","documentNumber":"<<your priority number>>","documentDate":"<<your priority date>>","dasAccessCode":"<<the selected access code>>","applicationCategory":"priority document","applicationNumber":"<<application number>>","applicationFilingDate":"<<application/filing date>>","email":null,"fileId":"<<the fileId obtained during a previous request>>","documentCodeCategory":"priority document","requestAckId":"<< the aknowledge number assigned to this registration>>","operationDateTime":"<<transaction date>>","requestStatusCategory":"registration - recorded"}
  • No labels