Retrieve PM Notes By Code
- 22 Oct 2025
- 1 Minute to read
- Print
- DarkLight
Retrieve PM Notes By Code
- Updated on 22 Oct 2025
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?    
Thank you for your feedback!
Get
/pm-rest-api/rest/1/pmnotes
Query Standards
Finder
Following row finders are available for data filtering and optimizing request performance.
- Find Note
- By UUID
Find Note
Recommended finder parameters. Refer to Query Parameters for example.
| Parameter | Description | Sample | 
|---|---|---|
| PmnObjCompCodeVar | Object Company Code | 001 | 
| PmnObjKeyVar | Object Key | RFI-0002 | 
| PmnObjectTypeVar | Object Type | PMRFI | 
| PmnObjProjCodeVar | Object Project | 14002 | 
| PmnNumVar | Number | 1 | 
By UUID
This is an optional finder for querying a specific PM Note by row ID.
| Parameter | Description | Sample | 
|---|---|---|
| /VUUID | The VUuid attribute is the Unique row ID | /pm-rest-api/rest/1/pmnotes/C377D77723047140E05316821FAC73E3 | 
Security
HTTP
Type basic
Basic authentication
Query parameters
finder
string
ExamplefindNote;PmnObjCompCodeVar=001,PmnObjKeyVar=RFI-0002, PmnObjectTypeVar=PMRFI, PmnObjProjCodeVar=14002, PmnNumVar=1
limit
integer
Example500
offset
integer
Example0
totalResults
boolean
Exampletrue
orderBy
string
ExamplePmnVUuid:desc
Responses
200
OK
Headers
Content-Type
string
Exampleapplication/vnd.oracle.adf.resourcecollection+json
{
  "items": [
    {
      "PmnClosedFlag": "N",
      "PmnComment": null,
      "PmnContactCode": "SS",
      "PmnContactName": "Melissa Afkari",
      "PmnDate": "2023-05-24T18:20:19Z",
      "PmnInternalFlag": "N",
      "PmnNote": "asdf",
      "PmnNum": 1,
      "PmnObjCompCode": "001",
      "PmnObjKey1": "RFI-0002",
      "PmnObjKey2": null,
      "PmnObjProjCode": "14002",
      "PmnObjectType": "PMRFI",
      "PmnPartnCode": "001",
      "PmnPartnTypeCode": "C",
      "PmnSrcCode": null,
      "PmnSrcDesc": null,
      "PmnStatusCode": "OPEN",
      "PmnSubject": null,
      "PmnUser": "CMICUSER",
      "PmnVUuid": "FC758E7131ED4DFCE05316821FAC21A8",
      "links": [
        {
          "rel": "self",
          "href": "http://mobtest.cmiccloudr12.com:80/cmictestrti/pm-rest-api/rest/1/pmnotes/FC758E7131ED4DFCE05316821FAC21A8",
          "name": "pmnotes",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "http://mobtest.cmiccloudr12.com:80/cmictestrti/pm-rest-api/rest/1/pmnotes/FC758E7131ED4DFCE05316821FAC21A8",
          "name": "pmnotes",
          "kind": "item"
        }
      ]
    }
  ],
  "count": 1,
  "hasMore": false,
  "limit": 60,
  "offset": 0,
  "links": [
    {
      "rel": "self",
      "href": "http://mobtest.cmiccloudr12.com:80/cmictestrti/pm-rest-api/rest/1/pmnotes",
      "name": "pmnotes",
      "kind": "collection"
    }
  ]
}object 
.png)