PUT v3/lists/{listId}

https://api.questline.com/v3/lists/{listId}

Updates an existing list.

Request Information

URI Parameters

Name Description Type Additional Info
listId The ID of the list. globally unique identifier Required

Body Parameters

The request body.

PutListRequestV3
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

PutListResponseV3
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-26T06:57:15.6252834+00:00",
    "ListId": "756cbe1c-b598-4912-b161-2f71c8a7c460",
    "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-26T06:57:15.6252834+00:00","ListId":"756cbe1c-b598-4912-b161-2f71c8a7c460","Name":"sample string 3","SubscriberCount":4},"Error":{"ErrorId":1,"ErrorMessage":"sample string 1"}});