WebNIC RESTFUL v2
Domain APISSL APIDNS APIUtility Endpoints
Domain APISSL APIDNS APIUtility Endpoints
WebNIC OST @ Github
WebNIC Partner Portal
  1. Organization
  • 📝 Update History
  • 💡 Testing Flow
  • CSR
    • Generate CSR
      POST
    • Decode CSR
      POST
  • Certificate
    • Get Order Info
      GET
    • Order Statistics
      GET
    • Order Graph Statistics
      GET
    • Order Pagination Search
      POST
    • Download Cert
      POST
    • Place Order
      POST
    • Cancel Order
      POST
    • Renew Order
      POST
    • Reissue Order
      POST
  • Domain Validations
    • Check DCV Status
      GET
    • Change Auth Type
      PUT
    • Get Auth Info
      GET
    • Approver List
      GET
    • Update Email Approver
      PUT
    • Send Email Approver
      POST
  • Product
    • Linkage of Product informations
    • GET Product List (new)
      GET
    • Get Product List
      GET
    • Get SSL Rules
      GET
    • Get Product Info
      GET
    • Get Product Price
      GET
  • Organization
    • Create Organization
      POST
    • Search Organization
      POST
    • Get Organization Info
      GET
    • Update Organization Contact
      PUT
    • Submit Validation
      POST
    • Get Validation Status
      GET
  • Contact
    • Get Contact Info
    • Create Contact
    • Delete Contact
Domain APISSL APIDNS APIUtility Endpoints
Domain APISSL APIDNS APIUtility Endpoints
WebNIC OST @ Github
WebNIC Partner Portal
  1. Organization

Search Organization

OTE Environment
https://oteapi.webnic.cc
OTE Environment
https://oteapi.webnic.cc
POST
/ssl/v2/organization/search
Last modified:2025-01-13 12:39:16
This endpoint allows you to search for organizations based on filter conditions.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
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
  }
}'
Response Response Example
{
    "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"
            }
        ]
    }
}
Modified at 2025-01-13 12:39:16
Previous
Create Organization
Next
Get Organization Info
Built with