How to find request payload source

Viewed 45

I want to get 1 thing from request payload looking in chrome devtools, but I don't know how to find the source of it, how it's made.

Can i somehow find it?

1 Answers

view payload source

Open Dev-tools , Go to network tab and select the API call for which you want to see Payload source. Then go to Payload tab in request details and click on "view source" it will display payload source.

Related