Apps And Solutions
Common
Get all solutions for a given organization.
1min
GET
/developer/organization/{orgId}/solutions
This is an api for retrieving all the solutions owned by the provided organization.
Path Parameters
orgId
string
*
Header Parameters
x-developerplatform-access
string
*
Responses
200
SolutionDTO[]
solutionId
string
*
versions
SolutionVersionDTO[]
*
solutionType
string<APP | API>
productFamily
string
*
supportedCountries
string[]
*
organizationId
string
*
400
User not authorized on the organization provided.
BadRequestErrorResponseDTO
error
BadRequestErrorDTO
*
request
StandardRequestDTO
*
Curl
JS
Ruby
Python
1curl --location --globoff '/developer/organization/{orgId}/solutions' \
2--header 'Accept: application/json' \
3--header 'Content-Type: application/json'
Responses
200
400
1[
2 {
3 "solutionId": "solution:b31414f1-bc40-42c9-bcc0-ed7a47126441",
4 "versions": [
5 {
6 "createdAt": "",
7 "createdBy": "",
8 "updatedAt": "",
9 "updatedBy": "",
10 "isCopyrightFree": true,
11 "displayName": "Vehicle Routing",
12 "longDescription": "This is a solution for vehicle routing used to optimize routes for delivery",
13 "shortDescription": "This is a solution for vehicle routing",
14 "isConsoleCompatible": true,
15 "solutionId": "solutionversion:b31414f1-bc40-42c9-bcc0-ed7a47126441",
16 "solutionVersionId": "solutionversion:b31414f1-bc40-42c9-bcc0-ed7a47126441",
17 "version": "1.0.0",
18 "categories": [
19 ""
20 ],
21 "phase": "DRAFT",
22 "images": [
23 {
24 "artifactId": "470d7bb7-4136-4fa5-8806-85d5f7ee2548",
25 "fileName": "icon.png",
26 "fileDescription": "",
27 "fileUrl": "https://my-app.com/icon.png",
28 "filePath": "myapp/icon.png"
29 }
30 ],
31 "icon": [
32 {
33 "artifactId": "470d7bb7-4136-4fa5-8806-85d5f7ee2548",
34 "fileName": "icon.png",
35 "fileDescription": "",
36 "fileUrl": "https://my-app.com/icon.png",
37 "filePath": "myapp/icon.png"
38 }
39 ],
40 "documents": [
41 {
42 "category": "DRAFT",
43 "document": {}
44 }
45 ],
46 "configurations": [
47 {
48 "category": "solution-configuration",
49 "configurationFile": {}
50 }
51 ],
52 "applications": [
53 {
54 "appId": "app:bf17e158-1951-47f9-84f1-e50aeb59fac2",
55 "appVersionId": "appversion:bf17e158-1951-47f9-84f1-e50aeb59fac2",
56 "displayOrder": 1,
57 "initSequence": 1,
58 "listingId": "",
59 "semver": ""
60 }
61 ],
62 "solutionInitializationConfiguration": {},
63 "visibility": {},
64 "solnUrls": [
65 {
66 "name": "landingPage",
67 "url": "https://www.example.com/landing-page"
68 }
69 ],
70 "systemAppSettings": [
71 ""
72 ],
73 "apis": [
74 {
75 "apiBaseUrl": "https://api.example.com",
76 "apiDetails": [
77 {
78 "name": "Geocoder V1",
79 "relativePath": "geocoder/v1"
80 }
81 ]
82 }
83 ],
84 "listingId": ""
85 }
86 ],
87 "solutionType": "APP",
88 "productFamily": "",
89 "supportedCountries": [
90 ""
91 ],
92 "organizationId": ""
93 }
94]


Updated 10 Oct 2024
Did this page help you?
Yes
No