Skip to content

Commit 1e73108

Browse files
Feature/grad2 3245 (#562)
* bruno documentation * bruno documentation
1 parent bd49cb0 commit 1e73108

38 files changed

+557
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
meta {
2+
name: Run Archive School Reports Batch Job
3+
type: http
4+
seq: 2
5+
}
6+
7+
post {
8+
url: {{baseUrl}}/api/v1/batch/report/school/archive
9+
body: json
10+
auth: none
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
meta {
2+
name: Run Archive Students Batch Job
3+
type: http
4+
seq: 1
5+
}
6+
7+
post {
8+
url: {{baseUrl}}/api/v1/batch/student/archive
9+
body: json
10+
auth: none
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
meta {
2+
name: Create a Batch Job Type
3+
type: http
4+
seq: 3
5+
}
6+
7+
post {
8+
url: {{baseUrl}}/api/v1/batch/batchjobtype
9+
body: json
10+
auth: none
11+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
meta {
2+
name: Delete a Batch Job Type
3+
type: http
4+
seq: 5
5+
}
6+
7+
delete {
8+
url: {{baseUrl}}/api/v1/batch/batchjobtype/:batchJobTypeCode
9+
body: none
10+
auth: none
11+
}
12+
13+
params:path {
14+
batchJobTypeCode:
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
meta {
2+
name: Find a Batch Job Type by code
3+
type: http
4+
seq: 4
5+
}
6+
7+
get {
8+
url: {{baseUrl}}/api/v1/batch/batchjobtype/:batchJobTypeCode
9+
body: none
10+
auth: none
11+
}
12+
13+
params:path {
14+
batchJobTypeCode:
15+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
meta {
2+
name: Find all Batch Job Types
3+
type: http
4+
seq: 1
5+
}
6+
7+
get {
8+
url: {{baseUrl}}/api/v1/batch/batchjobtype
9+
body: none
10+
auth: none
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
meta {
2+
name: Update a Batch Job Type
3+
type: http
4+
seq: 2
5+
}
6+
7+
put {
8+
url: {{baseUrl}}/api/v1/batch/batchjobtype
9+
body: json
10+
auth: none
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
meta {
2+
name: Run Manual Cert Regen Job
3+
type: http
4+
seq: 1
5+
}
6+
7+
get {
8+
url: {{baseUrl}}/api/v1/batch/executecertregenbatchjob
9+
body: none
10+
auth: none
11+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
meta {
2+
name: Run Specialized User Req Cert Regen Job
3+
type: http
4+
seq: 2
5+
}
6+
7+
post {
8+
url: {{baseUrl}}/api/v1/batch/executecertregenbatchjob
9+
body: json
10+
auth: none
11+
}
12+
13+
body:json {
14+
{
15+
"schoolIds": [],
16+
"districtIds": [],
17+
"schoolCategoryCodes": [],
18+
"pens": [],
19+
"programs": [],
20+
"studentIDs": [],
21+
"statuses": [],
22+
"reportTypes": [],
23+
"user": "",
24+
"address": "",
25+
"gradDateFrom": "",
26+
"gradDateTo": "",
27+
"validateInput": "",
28+
"activityCode": "",
29+
"localDownload": "",
30+
"quantity": "",
31+
"runMode": ""
32+
}
33+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
meta {
2+
name: Load Batch Summary
3+
type: http
4+
seq: 2
5+
}
6+
7+
get {
8+
url: {{baseUrl}}/api/v1/batch/dashboard/summary
9+
body: none
10+
auth: none
11+
}
12+
13+
params:query {
14+
~pageNumber:
15+
~pageSize:
16+
}

0 commit comments

Comments
 (0)