-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13a44b8
commit d88c099
Showing
62 changed files
with
972 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Business/Archive Reports.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Archive Reports | ||
type: http | ||
seq: 5 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/archive | ||
body: json | ||
auth: none | ||
} | ||
|
||
params:query { | ||
batchId: | ||
reportType: | ||
} | ||
|
||
body:json { | ||
[ | ||
{} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Business/Delete Reports.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Delete Reports | ||
type: http | ||
seq: 3 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/delete | ||
body: json | ||
auth: none | ||
} | ||
|
||
params:query { | ||
batchId: | ||
reportType: | ||
} | ||
|
||
body:json { | ||
[ | ||
{} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
...DUC-GRAD-GRADUATION-REPORT-API/Business/Get Report Students Guids by mincode and type.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Get Report Students Guids by mincode and type | ||
type: http | ||
seq: 2 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/studentreportsbystudentid | ||
body: json | ||
auth: none | ||
} | ||
|
||
params:query { | ||
reportType: | ||
rowCount: | ||
} | ||
|
||
body:json { | ||
[ | ||
{} | ||
] | ||
} |
21 changes: 21 additions & 0 deletions
21
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Business/Get Reports Count by id and status.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
meta { | ||
name: Get Reports Count by id and status | ||
type: http | ||
seq: 1 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v2/graduationreports/count | ||
body: json | ||
auth: none | ||
} | ||
|
||
params:query { | ||
reportType: | ||
} | ||
|
||
body:json { | ||
[ | ||
{} | ||
] | ||
} |
21 changes: 21 additions & 0 deletions
21
...runo/EDUC-GRAD-GRADUATION-REPORT-API/Business/Get Reports Count by mincode and status.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
meta { | ||
name: Get Reports Count by mincode and status | ||
type: http | ||
seq: 4 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/count | ||
body: json | ||
auth: none | ||
} | ||
|
||
params:query { | ||
reportType: | ||
} | ||
|
||
body:json { | ||
[ | ||
{} | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Certificate/Create a Certificate Type.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Create a Certificate Type | ||
type: http | ||
seq: 3 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/certificatetype | ||
body: json | ||
auth: none | ||
} |
15 changes: 15 additions & 0 deletions
15
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Certificate/Delete a Certificate Type.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Delete a Certificate Type | ||
type: http | ||
seq: 5 | ||
} | ||
|
||
delete { | ||
url: {{baseUrl}}/api/v1/graduationreports/certificatetype/:certTypeCode | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
certTypeCode: | ||
} |
15 changes: 15 additions & 0 deletions
15
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Certificate/Find a Certificate Type by code.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Find a Certificate Type by code | ||
type: http | ||
seq: 4 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/certificatetype/:certTypeCode | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
certTypeCode: | ||
} |
11 changes: 11 additions & 0 deletions
11
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Certificate/Find all Certificate Types.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Find all Certificate Types | ||
type: http | ||
seq: 1 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/certificatetype | ||
body: none | ||
auth: none | ||
} |
11 changes: 11 additions & 0 deletions
11
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Certificate/Update a Certificate Type.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Update a Certificate Type | ||
type: http | ||
seq: 2 | ||
} | ||
|
||
put { | ||
url: {{baseUrl}}/api/v1/graduationreports/certificatetype | ||
body: json | ||
auth: none | ||
} |
15 changes: 15 additions & 0 deletions
15
...AD-GRADUATION-REPORT-API/Certificates/Archive All Student Achievements by Student ID.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Archive All Student Achievements by Student ID | ||
type: http | ||
seq: 18 | ||
} | ||
|
||
delete { | ||
url: {{baseUrl}}/api/v1/graduationreports/archiveachievement/:studentID | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
studentID: | ||
} |
15 changes: 15 additions & 0 deletions
15
...bruno/EDUC-GRAD-GRADUATION-REPORT-API/Certificates/Check if Certificate type is valid.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Check if Certificate type is valid | ||
type: http | ||
seq: 16 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/certificate/:certificateTypeCode | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
certificateTypeCode: | ||
} |
15 changes: 15 additions & 0 deletions
15
...AD-GRADUATION-REPORT-API/Certificates/Check if SCCP Student Certificate exists or not.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Check if SCCP Student Certificate exists or not | ||
type: http | ||
seq: 15 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/check-sccp-certificate-exists | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:query { | ||
studentID: | ||
} |
15 changes: 15 additions & 0 deletions
15
...RAD-GRADUATION-REPORT-API/Certificates/Delete All Student Achievements by Student ID.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Delete All Student Achievements by Student ID | ||
type: http | ||
seq: 17 | ||
} | ||
|
||
delete { | ||
url: {{baseUrl}}/api/v1/graduationreports/studentachievement/:studentID | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
studentID: | ||
} |
11 changes: 11 additions & 0 deletions
11
...AD-GRADUATION-REPORT-API/Certificates/Read All Student Certificates For Distribution.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Read All Student Certificates For Distribution | ||
type: http | ||
seq: 14 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/getcertificatesfordistribution | ||
body: none | ||
auth: none | ||
} |
15 changes: 15 additions & 0 deletions
15
...-GRAD-GRADUATION-REPORT-API/Certificates/Read All Student Certificates by Student ID.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Read All Student Certificates by Student ID | ||
type: http | ||
seq: 9 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/studentcertificate/:studentID | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
studentID: | ||
} |
15 changes: 15 additions & 0 deletions
15
...C-GRAD-GRADUATION-REPORT-API/Certificates/Read All Student Transcripts by Student ID.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Read All Student Transcripts by Student ID | ||
type: http | ||
seq: 8 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/studenttranscript/:studentID | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
studentID: | ||
} |
11 changes: 11 additions & 0 deletions
11
...GRAD-GRADUATION-REPORT-API/Certificates/Read All Student Transcripts for Distribution.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
meta { | ||
name: Read All Student Transcripts for Distribution | ||
type: http | ||
seq: 13 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/gettranscriptsandreportsforposting | ||
body: none | ||
auth: none | ||
} |
19 changes: 19 additions & 0 deletions
19
...-API/Certificates/Read All Student Transcripts-Certificates for User Req Distribution.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
meta { | ||
name: Read All Student Transcripts-Certificates for User Req Distribution | ||
type: http | ||
seq: 3 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/userrequest/:credentialType | ||
body: json | ||
auth: none | ||
} | ||
|
||
params:path { | ||
credentialType: | ||
} | ||
|
||
headers { | ||
Authorization: | ||
} |
19 changes: 19 additions & 0 deletions
19
...tudent Transcripts-Certificates with Null Distribution Date for User Req Distribution.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
meta { | ||
name: Read All Student Transcripts-Certificates with Null Distribution Date for User Req Distribution | ||
type: http | ||
seq: 4 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/userrequest/notyetdistributed/:credentialType | ||
body: json | ||
auth: none | ||
} | ||
|
||
params:path { | ||
credentialType: | ||
} | ||
|
||
headers { | ||
Authorization: | ||
} |
15 changes: 15 additions & 0 deletions
15
...N-REPORT-API/Certificates/Read Student Certificate by Student ID and Certificate Type.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
meta { | ||
name: Read Student Certificate by Student ID and Certificate Type | ||
type: http | ||
seq: 10 | ||
} | ||
|
||
get { | ||
url: {{baseUrl}}/api/v1/graduationreports/psi/studenttranscript/:studentID | ||
body: none | ||
auth: none | ||
} | ||
|
||
params:path { | ||
studentID: | ||
} |
30 changes: 30 additions & 0 deletions
30
tools/bruno/EDUC-GRAD-GRADUATION-REPORT-API/Certificates/Save Student Certificate.bru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
meta { | ||
name: Save Student Certificate | ||
type: http | ||
seq: 7 | ||
} | ||
|
||
post { | ||
url: {{baseUrl}}/api/v1/graduationreports/studentcertificate | ||
body: json | ||
auth: none | ||
} | ||
|
||
body:json { | ||
{ | ||
"createUser": "", | ||
"createDate": "", | ||
"updateUser": "", | ||
"updateDate": "", | ||
"id": "", | ||
"pen": "", | ||
"certificate": "", | ||
"gradCertificateTypeCode": "", | ||
"gradCertificateTypeLabel": "", | ||
"studentID": "", | ||
"distributionDate": "", | ||
"documentStatusCode": "", | ||
"documentStatusLabel": "", | ||
"overwrite": "" | ||
} | ||
} |
Oops, something went wrong.