ServiceNow¶
This documentation provides details about the data that can be faked for ServiceNow.
To retrieve generated/fake data for ServiceNow see the following capabilities:
from socfaker import SocFaker
sc = SocFaker()
print(sc.products.servicenow.search())
ServiceNow Class¶
-
class
socfaker.servicenow.ServiceNow¶ Generate a Fake response from a Service Now Incident Search
-
search(random_keyword=None)¶ Generates a fake response from a ServiceNow Incident Search
- Args:
- random_keyword (str, optional): Adds a random keyword string you provide to fields within the generated response object. Defaults to None.
- Returns:
- dict: A ServiceNow Incident Search response object
-