Submit Service Catalog Request
servicenow_submit_catalog_requestSubmit a service catalog request to ServiceNow for a specific item, including variables and quantity. Returns the REQ and RITM numbers for tracking.
Instructions
Submit a service catalog request using the ServiceNow Service Catalog API.
Args:
catalog_item_sys_id (string): sys_id of the catalog item to order
requested_for (string): sys_id of the user this is requested for (default: current user)
variables (object): Form variable name→value pairs required by the catalog item (get from servicenow_get_catalog_item)
quantity (number): Number of items to request (default: 1)
Returns: Created request number (REQ...) and request item number (RITM...)
Tip: First use servicenow_get_catalog_item to see required variables before submitting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| quantity | No | Quantity to request | |
| variables | No | Variable name→value pairs for the catalog item form | |
| requested_for | No | sys_id of the user to request for (default: current user) | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |
| catalog_item_sys_id | Yes | sys_id of the catalog item |