What is a 'Money Request'?
mainA money request is the specific API call that returns the data requested by the user. It is the core component of a skill. A machine-generated money request in a skill file includes:
endpoint: The URL path.method: The HTTP method (e.g., POST).identifies_by: A way to distinguish the request (e.g., anoperationName).response_path: The JSON path to the relevant data in the response body.
money_request:
endpoint: "/api/graphql/v1"
method: POST
identifies_by: "operationName: searchJobs"
response_path: "data.searchJobs.edges"