Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

79
Views
I need send request looping with a array list

When I finish one request I'm creating an array in the collectionVariables to store an Id that come from response. Then I need use this array to send request to delete all my content

(storing the id)

const idArray = pm.collectionVariables.get("idArray2");
response = JSON.parse(responseBody);
// const array = [];
const id = response.items[0].sys.id;
// array.push(id);
// entryId = pm.response.json().items[0].sys.id;
idArray.push(id);
// arrayValue = pm.collectionVariables.get("idArray");
console.log(idArray);
// pm.collectionVariables.set("arrayValue", array);
// arrayValue.push(id);

To delete this contents I need to loop with forEach function. For it I need set the arrays info in the {{ID}} endpoint

var submitUnpublishedRequest = {
        url: pm.variables.replaceIn('https://api.contentful.com/spaces/{{spaceId}}/environments/{{branch}}/entries/{{ID}}/published'),
        method: 'DELETE',
        header: {
            'Authorization': "Bearer " + pm.environment.get("contentManagementToken"),
            'aeg-event-type': pm.environment.get("event_type"),
            'aeg-sas-key': pm.environment.get("sas_key"),
            'Content-Type': "application/json"
        },
        body: {}
    } 
 pm.sendRequest(submitUnpublishedRequest)

My question is, how can I loop this pre-request to delete my content ?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!