action getpostman_update_mock { label: "Update Mock" description: "This endpoint allows you to update a mock you have created using its `uid`. The endpoint allows you to edit fields,\n* name\n* environment\n* description\n* private\n* versionTag\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: PUT path: "/mocks/{mock_uid}" encoding: json input: { type: "object" properties: { mock: { type: "object" properties: { description: { type: "string" } environment: { type: "string" } name: { type: "string" } private: { type: "boolean" } versionTag: { type: "string" } } } } } output: { type: "object" properties: { mock: { type: "object" properties: { collection: { type: "string" } config: { type: "object" properties: { headers: { type: "array" items: { type: "object" } } matchBody: { type: "boolean" } matchQueryParams: { type: "boolean" } matchWildcards: { type: "boolean" } } } environment: { type: "string" } id: { type: "string" } mockUrl: { type: "string" } name: { type: "string" } owner: { type: "string" } uid: { type: "string" } } } } } }