This URL is the GraphQL service endpoint. Send POST requests with a JSON body containing query (and optional variables).
Session isolation is automatic via cookie; include a Bearer token for queries/mutations that require authentication.
POST http://www.apitesting.rcvacademy.com/graphql
{
"query": "{ products(page: 1, limit: 5) { products { id name price stock } pageInfo { total } } }"
}
{
"query": "mutation($email: String!, $password: String!) { login(email: $email, password: $password) { token user { id email role } } }",
"variables": { "email": "customer@sandbox.test", "password": "Customer@123" }
}
Use REST API Docs or SOAP WSDL for the other protocols.