HomeRecipesAPI ReferenceChangelogDiscussions
Log In
Discussions

Discussions

Ask a Question
Back to All

Retrieve AP Invoice Status Entity Info

I am trying to retrieve the AP Invoice Status Entity info following

I tried the following but it does not return a response. I assumed Id refers to WO ID

POST https://az-am-ent-f6.corrigo.com/api/v1/query/Contact HTTP/1.1
Accept-Encoding: gzip,deflate
CompanyName: Your Company
Content-Type: application/json
Authorization: Bearer some_token
Content-Length: 386
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.5.2 (Java/16.0.1)
body = {
  "QueryExpression":
  {
	  "Criteria": {
	    "Conditions": [
	      {
	        "PropertyName": "Id",
	        "Operator": "Equal",
	        "Values": [618862]
	      }
	    ],
        "FilterOperator": "And"	    
	  },
      "Distinct": True,
      "PropertySet": { "Properties" : ["*"]}
  }
}

Thank you in advance