---
sourceDocument: Australia API Reference
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/api-reference

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# Create: custom

# Create a custom processor {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

Create a custom processor to execute a script from a URL query. This feature is deprecated.

## Vorbereitungen

Role required: admin

## Warum und wann dieser Vorgang ausgeführt wird

Hinweis:  
This feature is deprecated. While legacy, existing custom processors continue to be supported, creating new custom processors has been deprecated. Instead, use the [Scripted REST APIs](https://servicenow-prod.fluidtopics.net/eAgQ546WEOagLzEOTr_eqQ "The scripted REST API feature allows application developers to build custom web service APIs.").

When complete, you can do the following tasks:

* Create a new processor
* Run a script from a URL query

The following example steps assume you have your own demonstration instance.

## Prozedur

1. Navigate to AllSystem DefinitionProcessors.
2. Select New.
3. In the Name field, enter <kbd class="ph userinput">Hello</kbd>.
4. In the Type field, select script.
5. In the Path field, enter <kbd class="ph userinput">Hello</kbd>.
6. In the Script field, enter the following code.  

       var name = g_request.getParameter("name");
       g_processor.writeOutput("text/plain", "Hello " + name);

7. Select Submit.
8. Log out of the instance and open a new browser window.
9. Enter a URL query to the instance with the following format: https://instance.service-now.com/processor_name.do?parameter=value.  
   For example: https://\<instance name\>.service-now.com/Hello.do?name=world.
10. When prompted, enter the credentials for a valid user.

