# Get Contact List: Manage Many Contacts

Use the JobID generated after a POST /contactslist/{list_id}/managemanycontacts request to check its progress, success, as well as any errors that might have occurred. To obtain a valid list_ID, first call GET /v3/REST/contactslist to list your contact lists.

Endpoint: GET /v3/REST/contactslist/{list_ID}/managemanycontacts/{job_ID}
Version: 1.0.0
Security: basicAuth

## Path parameters:

  - `list_ID` (integer, required)
    Unique numeric ID assigned to this contact list.
    Example: 2000

  - `job_ID` (integer, required)
    Job ID assigned to a POST /contactslist/{list_id}/managemanycontacts request. Use it to monitor the progress and success of the request.
    Example: 13000

## Response 200 fields (application/json):

  - `Count` (integer)
    Indicates the number of objects in the Data array.

  - `Data` (array)
    A JSON array containing a list of objects returned by this endpoint.

  - `Data.ContactsLists` (array)
    A JSON array, containing information about the contact list and the actions performed for it.

  - `Data.ContactsLists.ListID` (integer)
    Unique numeric ID of the contact list.

  - `Data.ContactsLists.Action` (string)
    Action to be performed on the contacts for this list:

 * addforce - Add the contacts to this list and subscribe all of them. Any contacts already present in the list and unsubscribed from it will be forcibly subscribed once again.

 * addnoforce - Add the contacts to this list and subscribe them to it. Any contacts already present will retain their subscription status, i.e. if a contact is part of the list, but unsubscribed, it will not be forcibly subscribed again.

 * remove - Remove the contacts from this list.

 * unsub - Unsubscribe the contacts from this list.
    Enum: "addforce", "addnoforce", "remove", "unsub"

  - `Data.Count` (integer)
    Number of contacts processed by this request.

  - `Data.Error` (string)
    Indicates what kind of errors came up during the processing of this job, if any.

  - `Data.ErrorFile` (string)
    URL link to the file describing the the types of errors that came up during this job, if any.

  - `Data.JobEnd` (string)
    Timestamp indicating when this job request was completed.

  - `Data.JobStart` (string)
    Timestamp indicating when this job request was started.

  - `Data.Status` (string)
    The status of this job request:

  * Completed
  * In Progress
  * Error

  - `Total` (integer)
    Indicates the number of objects in the Data array.


## Response 400 fields

## Response 401 fields

## Response 403 fields

## Response 404 fields

## Response 429 fields

## Response 500 fields
