Configurations
Was this helpful?
Was this helpful?
GET /configurations/{storeId} HTTP/1.1
Host: api.laminar.run
Authorization: Bearer JWT
Accept: */*
OK
{
"id": 1,
"workspaceId": 1,
"name": "text",
"flowCredentialPairs": [
{
"id": 1,
"flowId": 1,
"sourceAuthCredential": {
"id": 1,
"name": "text",
"authType": "text"
},
"destinationAuthCredential": {
"id": 1,
"name": "text",
"authType": "text"
}
}
],
"properties": [
{
"id": 1,
"key": "text",
"value": "text"
}
]
}
POST /configurations HTTP/1.1
Host: api.laminar.run
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 172
{
"workspaceId": 1,
"name": "text",
"flowCredentialPairs": [
{
"flowId": 1,
"sourceAuthCredentialId": 1,
"destinationAuthCredentialId": 1
}
],
"properties": [
{
"key": "text",
"value": "text"
}
]
}
OK
{
"id": 1,
"workspaceId": 1,
"name": "text",
"flowCredentialPairs": [
{
"id": 1,
"flowId": 1,
"sourceAuthCredential": {
"id": 1,
"name": "text",
"authType": "text"
},
"destinationAuthCredential": {
"id": 1,
"name": "text",
"authType": "text"
}
}
],
"properties": [
{
"id": 1,
"key": "text",
"value": "text"
}
]
}
PUT /configurations HTTP/1.1
Host: api.laminar.run
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 179
{
"id": 1,
"workspaceId": 1,
"name": "text",
"flowCredentialPairs": [
{
"flowId": 1,
"sourceAuthCredentialId": 1,
"destinationAuthCredentialId": 1
}
],
"properties": [
{
"key": "text",
"value": "text"
}
]
}
OK
{
"id": 1,
"workspaceId": 1,
"name": "text",
"flowCredentialPairs": [
{
"id": 1,
"flowId": 1,
"sourceAuthCredential": {
"id": 1,
"name": "text",
"authType": "text"
},
"destinationAuthCredential": {
"id": 1,
"name": "text",
"authType": "text"
}
}
],
"properties": [
{
"id": 1,
"key": "text",
"value": "text"
}
]
}