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": "2024-04-18T10:10:36.3754781+00:00",
    "ListId": "d918a386-6c4c-44f7-bd8b-05f623b67bd6",
    "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":"2024-04-18T10:10:36.3754781+00:00","ListId":"d918a386-6c4c-44f7-bd8b-05f623b67bd6","Name":"sample string 3","SubscriberCount":4},"Error":{"ErrorId":1,"ErrorMessage":"sample string 1"}});