From 58179c0b25fa05325763ff26f8beecdb7fbece3a Mon Sep 17 00:00:00 2001 From: Claudio Rodrigo Pereyra Diaz Date: Mon, 5 Jul 2021 10:46:21 -0300 Subject: [PATCH] Update MailerQ Rest API v1 poolip The json example returned by the the pool ip endpoint is different than the endpoint return. --- Mailerq/5.13/rest-api-v1-pools.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mailerq/5.13/rest-api-v1-pools.md b/Mailerq/5.13/rest-api-v1-pools.md index f4d2c88fe..dc96729fc 100644 --- a/Mailerq/5.13/rest-api-v1-pools.md +++ b/Mailerq/5.13/rest-api-v1-pools.md @@ -43,11 +43,11 @@ Content-Type: application/json [ { - "ip": "127.0.0.1", + "localip": "127.0.0.1", "name": "sharedpool1" }, { - "ip": "192.168.1.1", + "localip": "192.168.1.1", "name": "sharedpool1" } ] @@ -95,7 +95,7 @@ Content-Type: application/json Authorization: Bearer ... { - "ip": "127.0.0.1", + "localip": "127.0.0.1", "name": "sharedpool1" }, ``` @@ -124,4 +124,4 @@ Content-Type: application/x-www-form-urlencoded name=sharedpool1&ip=127.0.0.1 ``` -DELETE requests, like post requests, support both JSON and urlencoded formats. \ No newline at end of file +DELETE requests, like post requests, support both JSON and urlencoded formats.