Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sl No

Entity

Method

Description

URL

Body

1

Login

POST

Login to get the token

{{base_url}}/oauth_token.do

2

Epic

GET

Read epics from the ServiceNow

{{base_url}}/api/now/table/rm_epic

3

Epic

POST

Create Epic in ServiceNow

{{base_url}}/api/now/table/rm_epic

Code Block
{
    "short_description":"postman-epic-1",
    "description":"postman-epic-desc-1"
}

short_description = Name of the epic

description= Description of the epic

Response Code: 201

JSON Response: details of created epic

4

Epic

PUT

Update epic

{{base_url}}/api/now/table/rm_epic/{{sys_id}}

For example:

{{base_url}}/api/now/table/rm_epic/74df0c2f2f533010c4b04f2e2c99b6f0

Code Block
{
    "short_description":"postman-epic-1000",
    "description":"postman-epic-desc-1000"
}

Response Code: 200

JSON Response: details of created epic

5

Epic

DELETE

Delete Epic

{{base_url}}/api/now/table/rm_epic/74df0c2f2f533010c4b04f2e2c99b6f0

Example: {{base_url}}/api/now/table/rm_epic/74df0c2f2f533010c4b04f2e2c99b6f0

Image Added

Response Code: 204

JSON Response: Empty