Set Postman Global Variable En-tête
// set postman global variable in header
pm.request.headers.add({key: 'CustomHeader', value: 'CustomValue' });
pm.request.headers.add({key: 'Content-Type', value: 'application/json' });
Excited Elephant