Get protection list

Description

POST https://rest.netim.com/3.0/brandprotection/list/

List brand protections matching filters

Headers

  • Authorization string
    The Autorization header must start with “Bearer ” followed by the session ID. Example:”Autorization: Bearer b0f13a3c01d9cce2a9a44cd729f81c26″
  • Content-type string
    Content type of the request Only “application/json” is accepted

Body

OPTIONAL

  • filters array
    Search filters
  • Available filter keys:
    • id (Brand protection ID)
    • labels (Brand protection labels)
    • dateCreate (Brand protection creation date)
    • dateExpiration (Brand protection expiration date)
    • status (Brand protection status)
    • idOwner (Brand protection owner ID)
    For more information on filters for list functions, please consult the corresponding page.

JSON example

{
    "filters": {
        "label": {
            "LIKE": "domain%"
        },
        "dateCreate": {
            ">": "2023-10-02"
        }
    }
}
  • 200OK

    The request is processed and the result is returned in the body.

    Body

    Arrayapplication/jsonAn array of SSL certificates, each containing the following keys :
    • id (Brand protection ID)
    • labels (Brand protection labels)
    • dateCreate (Brand protection creation date)
    • dateExpiration (Brand protection expiration date)
    • status (Brand protection status)
    • idOwner (Brand protection owner ID)

  • 4XX

Common language examples

$data = array(
    'filters' => array(
        'label' => ['LIKE' => 'domain%'],
        'dateCreate' => ['>' => '2023-10-02'],
    ),
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://rest.netim.com/3.0/brandprotection/list/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Authorization: Bearer ' . $sessionID,
    'Content-Type: application/json'
));
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);

$result = json_decode(curl_exec($ch), true);
$status_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
import java.util.Base64;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;

public class Example {

    public static void main(String args[]) throws Exception {
        String sessionID = "12345678";
        String body = "{\"filters\":{\"label\":{\"LIKE\":\"domain%\"},\"dateCreate\":{\">\":\"2023-10-02\"},}}";

        HttpClient client = HttpClient.newHttpClient();
        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create("https://rest.netim.com/3.0/brandprotection/list/"))
                .method("POST", HttpRequest.BodyPublishers.ofString(body))
                .header("Content-Type", "application/json")
                .header("Accept-Language", "EN")
                .header("Authorization", "Bearer " + sessionID)
                .build();
        HttpResponse response = client.send(request, HttpResponse.BodyHandlers.ofString());

        String result = response.body().toString();
    }
}
#!/usr/bin/python3

import json
import requests

url = 'https://rest.netim.com/3.0/brandprotection/list/'
sessionId = "440995cebb92324c0d99dc92321b1511"

headers = {"Authorization": "Bearer " + sessionId, "Content-Type": "application/json"}
body = {"filters":{"label":{"LIKE":"domain%"},"dateCreate":{">":"2023-10-02"},}}

response = requests.post(url, headers=headers, json=body)
curl -X POST 'https://rest.netim.com/3.0/brandprotection/list/' \
-H 'Authorization: Bearer 440995cebb92324c0d99dc92321b1511' \
-H "Content-type: application/json" \
-d '{"filters":{"label":{"LIKE":"domain%"},"dateCreate":{">":"2023-10-02"}}}'