curl --location --request POST 'https://oteapi.webnic.cc/ssl/v2/organization/search' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"filters": [
{
"field": "company", // "company", "email", "firstName", "lastName", "phoneNumber"
"operator": "LIKE", // "LIKE", "EQUAL"
"value": "test"
}
],
"pagination": {
"page": 1,
"pageSize": 3
}
}'{
"code": "1000",
"message": "Command completed successfully.",
"data": {
"pageSize": 7,
"totalPages": 1,
"totalItems": 7,
"items": [
{
"organizationId": 7,
"resid": 2740,
"digicertOrganizationId": "2076700",
"details": {
"company": "ASKJHD asdasd sas",
"firstName": "ASDKJh askjdh",
"lastName": "aksjdhak",
"address1": "Add1",
"address2": null,
"city": "asdasd",
"state": "asdasdad",
"countryCode": "AZ",
"zip": "asdasd",
"phoneNumber": "+60.123132123",
"faxNumber": null,
"email": "nelson.neoh@webnic.cc",
"jobTitle": null
},
"dtcreate": "2025-01-09T07:07:28Z",
"dtmodify": "2025-01-09T07:07:28Z"
},
{
"organizationId": 6,
"resid": 2740,
"digicertOrganizationId": "2076699",
"details": {
"company": "test123",
"firstName": "test123",
"lastName": "test123",
"address1": "test123",
"address2": "test123",
"city": "Kuala Lumpur",
"state": "Ampang",
"countryCode": "MY",
"zip": "23829",
"phoneNumber": "+60.2168188",
"faxNumber": null,
"email": "diyanatest123@gmail.com",
"jobTitle": null
},
"dtcreate": "2025-01-09T07:09:40Z",
"dtmodify": "2025-01-09T07:09:40Z"
}
]
}
}