New pool

Use this method to create a new pool of sender names.

POST https://a.loopmessage.com/api/v1/pool/new/

Request body

Name
Type
Description

name

String

Optional. New name for the pool.

ids

Array

Optional. Array with sender name IDs.

JSON Example

{
  "name": "new pool",
  "ids": ["id1", "id2", "id3"]
}

Response

{
    "id": "string",
    "name": "string",
    "count": 1,
    "create_date": "2025-01-27T22:23:51Z"
}

Last updated