WebNIC RESTFUL v2
Domain APISSL APIDNS APIUtility Endpoints
Domain APISSL APIDNS APIUtility Endpoints
WebNIC OST @ Github
WebNIC Partner Portal
  1. Certificate
  • 📝 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
    • Search Organization
    • Get Organization Info
    • Update Organization Contact
    • Submit Validation
    • Get Validation Status
  • 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. Certificate

Order Pagination Search

OTE Environment
https://oteapi.webnic.cc
OTE Environment
https://oteapi.webnic.cc
POST
/ssl/v2/orders/search
Last modified:2025-10-09 06:26:39
This endpoint allows you to search SSL orders based on specified filters.
Can have more than 1 filtering condition.

Field Value Options#

Field NameAvailable Options
commonNameString to match.
orderStatusREJECTED COMPLETED EXPIRED CANCELLED PENDING PENDING_REISSUE PROCESSED IN_PROCESS REVOKED INITIAL REFUNDED
certStatusACTIVE EXPIRED REVOKED CANCELLED PENDING_REISSUE INITIAL COMPLETED FAILED

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/orders/search' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "filters": [
    {
      "field": "commonName",
      "operator": "LIKE",
      "value": "webnic.cc"
    }
  ]
  ,
  "pagination": {
    "page": 1,
    "pageSize": 3
  }
}'
Response Response Example
{
    "code": "1000",
    "message": "Command completed successfully.",
    "data": {
        "pageSize": 3,
        "totalPages": 54,
        "totalItems": 160,
        "items": [
            {
                "orderId": "2301807388",
                "commonName": "webnic.sbs",
                "term": 5,
                "orderStatus": "pending",
                "certStatus": "initial",
                "product": "PositiveSSL",
                "dtcreate": "2024-11-07T15:24:25+08:00",
                "dtorderexpire": "2029-11-07T15:24:25+08:00",
                "email": "support@webnic.cc",
                "company": "Testing Organization"
            },
            {
                "orderId": "2301807111",
                "commonName": "webnic.sbs",
                "term": "1",
                "orderStatus": "pending",
                "certStatus": "initial",
                "product": "PositiveSSL",
                "dtcreate": "2024-11-07T15:23:41+08:00",
                "dtorderexpire": "2025-11-07T15:23:41+08:00",
                "email": "support@webnic.cc",
                "company": "Testing Organization"
            },
            {
                "orderId": "2301806361",
                "commonName": "webnic.sbs",
                "term": "1",
                "orderStatus": "pending",
                "certStatus": "initial",
                "product": "PositiveSSL",
                "dtcreate": "2024-11-07T15:21:46+08:00",
                "dtorderexpire": "2025-11-07T15:21:46+08:00",
                "email": "support@webnic.cc",
                "company": "Testing Organization"
            }
        ]
    }
}
Modified at 2025-10-09 06:26:39
Previous
Order Graph Statistics
Next
Download Cert
Built with