POST public-api/contracts/infosearch

This method returns all active contracts whose contract number or description contains the specified texts that are entered. Requires Allow Contract permission. Note: This is a Post API to avoid limitations inherent to passing parameters on the URL.



Request Information

URI Parameters

None.

Body Parameters

SearchStringClass
NameDescriptionTypeAdditional information
SearchString

string

None.

Request Formats

application/json

Sample:
{
  "SearchString": "sample string 1"
}



Response Information

Resource Description

WaspResultOfListOfContractModelHeaderInfo
NameDescriptionTypeAdditional information
Data

Collection of ContractModelHeaderInfo

None.

Messages

Collection of WtResult

None.

BatchNumber

integer

None.

HasError

boolean

None.

HasHttpError

boolean

None.

HasMessage

boolean

None.

HasSuccessWithMoreDataRemaining

boolean

None.

TotalRecordsLongCount

integer

None.

Response Formats

application/json

Sample:
{
  "Data": [
    {
      "ContractNumber": "sample string 1",
      "Description": "sample string 2",
      "Cost": 1.0,
      "BeginDate": "2026-03-12T15:35:47.634138+00:00",
      "EndDate": "2026-03-12T15:35:47.634138+00:00",
      "IsSoftwareContract": true,
      "LicenseCount": 1,
      "Notes": [
        {
          "NoteText": "sample string 1",
          "NoteDate": "2026-03-12T15:35:47.634138+00:00",
          "UserLogon": "sample string 2"
        },
        {
          "NoteText": "sample string 1",
          "NoteDate": "2026-03-12T15:35:47.634138+00:00",
          "UserLogon": "sample string 2"
        }
      ],
      "VendorNumber": "sample string 4",
      "CustomFields": [
        {
          "ImportRowNumber": 1,
          "DcfLabel": "sample string 2",
          "DCFDataType": 1,
          "DcfTextValue": "sample string 3",
          "DcfNumberValue": 1.0,
          "DcfDateValue": "2026-03-12T15:35:47.634138+00:00",
          "DcfValueRecordStatus": 0
        },
        {
          "ImportRowNumber": 1,
          "DcfLabel": "sample string 2",
          "DCFDataType": 1,
          "DcfTextValue": "sample string 3",
          "DcfNumberValue": 1.0,
          "DcfDateValue": "2026-03-12T15:35:47.634138+00:00",
          "DcfValueRecordStatus": 0
        }
      ],
      "HasAttachment": true,
      "AttachmentsToAdd": [
        "sample string 1",
        "sample string 2"
      ],
      "AttachmentsToDelete": [
        "sample string 1",
        "sample string 2"
      ],
      "AttachmentNames": [
        {
          "Key": "sample string 1",
          "Value": "sample string 2"
        },
        {
          "Key": "sample string 1",
          "Value": "sample string 2"
        }
      ]
    },
    {
      "ContractNumber": "sample string 1",
      "Description": "sample string 2",
      "Cost": 1.0,
      "BeginDate": "2026-03-12T15:35:47.634138+00:00",
      "EndDate": "2026-03-12T15:35:47.634138+00:00",
      "IsSoftwareContract": true,
      "LicenseCount": 1,
      "Notes": [
        {
          "NoteText": "sample string 1",
          "NoteDate": "2026-03-12T15:35:47.634138+00:00",
          "UserLogon": "sample string 2"
        },
        {
          "NoteText": "sample string 1",
          "NoteDate": "2026-03-12T15:35:47.634138+00:00",
          "UserLogon": "sample string 2"
        }
      ],
      "VendorNumber": "sample string 4",
      "CustomFields": [
        {
          "ImportRowNumber": 1,
          "DcfLabel": "sample string 2",
          "DCFDataType": 1,
          "DcfTextValue": "sample string 3",
          "DcfNumberValue": 1.0,
          "DcfDateValue": "2026-03-12T15:35:47.634138+00:00",
          "DcfValueRecordStatus": 0
        },
        {
          "ImportRowNumber": 1,
          "DcfLabel": "sample string 2",
          "DCFDataType": 1,
          "DcfTextValue": "sample string 3",
          "DcfNumberValue": 1.0,
          "DcfDateValue": "2026-03-12T15:35:47.634138+00:00",
          "DcfValueRecordStatus": 0
        }
      ],
      "HasAttachment": true,
      "AttachmentsToAdd": [
        "sample string 1",
        "sample string 2"
      ],
      "AttachmentsToDelete": [
        "sample string 1",
        "sample string 2"
      ],
      "AttachmentNames": [
        {
          "Key": "sample string 1",
          "Value": "sample string 2"
        },
        {
          "Key": "sample string 1",
          "Value": "sample string 2"
        }
      ]
    }
  ],
  "Messages": [
    {
      "ResultCode": 0,
      "Message": "sample string 1",
      "HttpStatusCode": 200,
      "FieldName": "sample string 2"
    },
    {
      "ResultCode": 0,
      "Message": "sample string 1",
      "HttpStatusCode": 200,
      "FieldName": "sample string 2"
    }
  ],
  "BatchNumber": 1,
  "HasError": false,
  "HasHttpError": false,
  "HasMessage": true,
  "HasSuccessWithMoreDataRemaining": false,
  "TotalRecordsLongCount": 1
}