Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions bruno/OpenAPI definition/Redline UI/Get all dataspaces.bru
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,3 @@ get {
body: none
auth: inherit
}

example {
name: 200 Response
description: Successfully retrieved dataspaces

request: {
url: {{baseUrl}}/api/ui/dataspaces
method: GET
mode: none
}

response: {
headers: {
Content-Type: */*
}

status: {
code: 200
text: OK
}

body: {
type: text
content: '''
[
{
"id": 0,
"name": ""
}
]
'''
}
}
}
104 changes: 0 additions & 104 deletions bruno/OpenAPI definition/Redline UI/Get participant details.bru
Original file line number Diff line number Diff line change
Expand Up @@ -9,107 +9,3 @@ get {
body: none
auth: inherit
}

example {
name: 200 Response
description: Successfully retrieved participant details

request: {
url: {{baseUrl}}/api/ui/service-providers/:serviceProviderId/tenants/:tenantId/participants/:participantId
method: GET
mode: none
params:path: {
serviceProviderId:
tenantId:
participantId:
}
}

response: {
headers: {
Content-Type: */*
}

status: {
code: 200
text: OK
}

body: {
type: text
content: '''
{
"id": 0,
"identifier": "",
"agents": [
{
"id": 0,
"type": "",
"state": ""
}
],
"dataspaceInfos": [
{
"dataspaceId": 0,
"agreementTypes": [],
"roles": [],
"id": 0
}
]
}
'''
}
}
}

example {
name: 404 Response
description: Service provider, tenant, or participant not found

request: {
url: {{baseUrl}}/api/ui/service-providers/:serviceProviderId/tenants/:tenantId/participants/:participantId
method: GET
mode: none
params:path: {
serviceProviderId:
tenantId:
participantId:
}
}

response: {
headers: {
Content-Type: */*
}

status: {
code: 404
text: Not Found
}

body: {
type: text
content: '''
{
"id": 0,
"identifier": "",
"agents": [
{
"id": 0,
"type": "",
"state": ""
}
],
"dataspaceInfos": [
{
"dataspaceId": 0,
"agreementTypes": [],
"roles": [],
"id": 0
}
]
}
'''
}
}
}
80 changes: 0 additions & 80 deletions bruno/OpenAPI definition/Redline UI/Get partner references.bru
Original file line number Diff line number Diff line change
Expand Up @@ -13,83 +13,3 @@ get {
params:path {
dataspaceId:
}

example {
name: 200 Response
description: Successfully retrieved partner references

request: {
url: {{baseUrl}}/api/ui/service-providers/:providerId/tenants/:tenantId/participants/:participantId/partners/:dataspaceId
method: GET
mode: none
params:path: {
providerId:
tenantId:
participantId:
dataspaceId:
}
}

response: {
headers: {
Content-Type: */*
}

status: {
code: 200
text: OK
}

body: {
type: text
content: '''
[
{
"identifier": "",
"nickname": ""
}
]
'''
}
}
}

example {
name: 404 Response
description: Service provider, tenant, participant, or dataspace not found

request: {
url: {{baseUrl}}/api/ui/service-providers/:providerId/tenants/:tenantId/participants/:participantId/partners/:dataspaceId
method: GET
mode: none
params:path: {
providerId:
tenantId:
participantId:
dataspaceId:
}
}

response: {
headers: {
Content-Type: */*
}

status: {
code: 404
text: Not Found
}

body: {
type: text
content: '''
[
{
"identifier": "",
"nickname": ""
}
]
'''
}
}
}
116 changes: 0 additions & 116 deletions bruno/OpenAPI definition/Redline UI/Get tenant details.bru
Original file line number Diff line number Diff line change
Expand Up @@ -13,119 +13,3 @@ get {
vars:pre-request {
baseUrl: http://redline.vps.beardyinc.com
}

example {
name: 200 Response
description: Successfully retrieved tenant details

request: {
url: {{baseUrl}}/api/ui/service-providers/:serviceProviderId/tenants/:tenantId
method: GET
mode: none
params:path: {
serviceProviderId:
tenantId:
}
}

response: {
headers: {
Content-Type: */*
}

status: {
code: 200
text: OK
}

body: {
type: text
content: '''
{
"id": 0,
"providerId": 0,
"name": "",
"participants": [
{
"id": 0,
"identifier": "",
"agents": [
{
"id": 0,
"type": "",
"state": ""
}
],
"dataspaceInfos": [
{
"dataspaceId": 0,
"agreementTypes": [],
"roles": [],
"id": 0
}
]
}
]
}
'''
}
}
}

example {
name: 404 Response
description: Service provider or tenant not found

request: {
url: {{baseUrl}}/api/ui/service-providers/:serviceProviderId/tenants/:tenantId
method: GET
mode: none
params:path: {
serviceProviderId:
tenantId:
}
}

response: {
headers: {
Content-Type: */*
}

status: {
code: 404
text: Not Found
}

body: {
type: text
content: '''
{
"id": 0,
"providerId": 0,
"name": "",
"participants": [
{
"id": 0,
"identifier": "",
"agents": [
{
"id": 0,
"type": "",
"state": ""
}
],
"dataspaceInfos": [
{
"dataspaceId": 0,
"agreementTypes": [],
"roles": [],
"id": 0
}
]
}
]
}
'''
}
}
}
Loading
Loading