-
Notifications
You must be signed in to change notification settings - Fork 2
/
ISM-JIRA Blog Post.postman_collection.json
104 lines (104 loc) · 1.99 KB
/
ISM-JIRA Blog Post.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"info": {
"_postman_id": "8b6e3cb1-d26b-4254-b7c4-8c8597b947ed",
"name": "ISM/JIRA Blog Post",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Authenticate to JIRA (Get list of projects)",
"request": {
"auth": {
"type": "basic",
"basic": [
{
"key": "password",
"value": "API_KEY_FOR_JIRA_SERVICE_ACCOUNT",
"type": "string"
},
{
"key": "username",
"value": "SERVICE_ACCOUNT_EMAIL",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"url": {
"raw": "YOUR_JIRA_TENANT_URL/api/2/project",
"host": [
"YOUR_JIRA_TENANT_URL"
],
"path": [
"api",
"2",
"project"
]
}
},
"response": []
},
{
"name": "Authenticate to ISM (Get releaseprojects)",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "rest_api_key=API_KEY_FOR_ISM_SERVICE_ACCOUNT",
"type": "text"
}
],
"url": {
"raw": "YOUR_ISM_TENANR_URL/api/odata/businessobject/releaseprojects",
"host": [
"YOUR_ISM_TENANR_URL"
],
"path": [
"api",
"odata",
"businessobject",
"releaseprojects"
]
}
},
"response": []
},
{
"name": "Get Releaseproject Metadata",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "rest_api_key=KKULE14B067B613D4A8DA7909EE6DA8D8A6C",
"type": "text"
},
{
"key": "Content-Type",
"value": "application/json",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "https://criticaldesign.trysaasit.com/api/odata/releaseprojects/$metadata",
"protocol": "https",
"host": [
"criticaldesign",
"trysaasit",
"com"
],
"path": [
"api",
"odata",
"releaseprojects",
"$metadata"
]
}
},
"response": []
}
]
}