action getpostman_single_mock { label: "Single Mock" description: "This endpoint fetches you the basic information about a single mock using its `uid`.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/mocks/{mock_uid}" encoding: json output: { type: "object" properties: { mock: { type: "object" properties: { collection: { type: "string" } environment: { type: "string" } id: { type: "string" } mockUrl: { type: "string" } owner: { type: "string" } uid: { type: "string" } } } } } }