-
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.
docs(adapters/github): updated bruno files: added headers, added http…
… file
- Loading branch information
1 parent
4367b70
commit adda741
Showing
6 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
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
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
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,68 @@ | ||
# VSC-EXTENSION: https://marketplace.visualstudio.com/items?itemName=humao.rest-client | ||
|
||
# --- ORGANISATION --- # | ||
|
||
# INFORMATION | ||
|
||
# @name Get an organization | ||
# @type http | ||
# @sequence 1 | ||
|
||
GET https://api.github.com/orgs/propromo-software | ||
Authorization: Bearer {{$dotenv [%]GITHUB_API_TOKEN}} | ||
X-GitHub-Api-Version: 2022-11-28 | ||
Accept: application/vnd.github+json | ||
|
||
### | ||
|
||
# --- PROJECT --- # | ||
|
||
# BOARD | ||
|
||
# @name List organization projects | ||
# @type http | ||
# @sequence 1 | ||
|
||
GET https://api.github.com/orgs/propromo-software/projects | ||
Authorization: Bearer {{$dotenv [%]GITHUB_API_TOKEN}} | ||
X-GitHub-Api-Version: 2022-11-28 | ||
Accept: application/vnd.github+json | ||
|
||
### | ||
|
||
# CARD | ||
|
||
# @name List project cards | ||
# @type http | ||
# @sequence 1 | ||
|
||
GET https://api.github.com/projects/columns/2/cards | ||
Authorization: Bearer {{$dotenv [%]GITHUB_API_TOKEN}} | ||
X-GitHub-Api-Version: 2022-11-28 | ||
Accept: application/vnd.github+json | ||
|
||
### | ||
|
||
# COLLABORATOR | ||
|
||
# @name List project collaborators | ||
# @type http | ||
# @sequence 1 | ||
|
||
GET https://api.github.com/projects/1/collaborators | ||
Authorization: Bearer {{$dotenv [%]GITHUB_API_TOKEN}} | ||
X-GitHub-Api-Version: 2022-11-28 | ||
Accept: application/vnd.github+json | ||
|
||
### | ||
|
||
# COLUMN | ||
|
||
# @name List project columns | ||
# @type http | ||
# @sequence 1 | ||
|
||
GET https://api.github.com/projects/1/columns | ||
Authorization: Bearer {{$dotenv [%]GITHUB_API_TOKEN}} | ||
X-GitHub-Api-Version: 2022-11-28 | ||
Accept: application/vnd.github+json |