POST v3/lists

https://api.questline.com/v3/lists

Creates a new list.

Request Information

URI Parameters

None.

Body Parameters

The request body.

PostListRequestV3
Name Description Type Additional Info
Name The name of the list. string None.

Request Formats

application/json, text/json

Sample:

{
  "Name": "sample string 1"
}

Response Information

Resource Description

PostListResponseV3
Name Description Type Additional Info
List The list. ListV3 None.
Error The response error, if any. ResponseErrorV3 None.

Response Formats

application/json, text/json

Sample:

{
  "List": {
    "Created": "2025-06-07T14:25:21.2354878+00:00",
    "ListId": "5da5a7d1-add1-4add-a37c-1f9c24b12dff",
    "Name": "sample string 3",
    "SubscriberCount": 4
  },
  "Error": {
    "ErrorId": 1,
    "ErrorMessage": "sample string 1"
  }
}

text/javascript, application/javascript, application/json-p

Sample:

/**/ typeof  === 'function' && ({"List":{"Created":"2025-06-07T14:25:21.2354878+00:00","ListId":"5da5a7d1-add1-4add-a37c-1f9c24b12dff","Name":"sample string 3","SubscriberCount":4},"Error":{"ErrorId":1,"ErrorMessage":"sample string 1"}});