If you encounter an issue in the POSTMAN when calling the POST method even though you are passed in the valid X-CSRF token by using the GET call in the previous step. Then here is the solution for your problem.
While sending the POST method, use the extra header parameters to solve this.
"CSRF token" and "cookie" header should be picked from the GET call.
X-CSRF-Token:pIgKS5dokT0FZTouD8-jig==
Content-Type:application/json
Connection:keep-alive
Cookie:SAP_SESSIONID_KUH_246=fgAZqA33-I3QLvTa5yuXPb-AoFlObxHqhCcAFj5r60I%3d
Hope this resolves your issue. If yes, comment below. Thanks
While sending the POST method, use the extra header parameters to solve this.
"CSRF token" and "cookie" header should be picked from the GET call.
X-CSRF-Token:pIgKS5dokT0FZTouD8-jig==
Content-Type:application/json
Connection:keep-alive
Cookie:SAP_SESSIONID_KUH_246=fgAZqA33-I3QLvTa5yuXPb-AoFlObxHqhCcAFj5r60I%3d
Hope this resolves your issue. If yes, comment below. Thanks