Introduction
This is the NetFoundry identity service
Overview
HTTP verbs
NetFoundry adheres closely to standard HTTP and REST conventions in its use of HTTP verbs.
Verb | Usage |
---|---|
|
Used to retrieve a resource |
|
Used to create a new resource |
|
Used to update an existing resource, full updates only |
|
Used to delete an existing resource |
The PATCH method is not used (yet).
|
HTTP status codes
NetFoundry adheres closely to standard HTTP and REST conventions in its use of HTTP status codes.
Status code | Usage |
---|---|
|
The actual response will depend on the request method used. In a GET request, the response will contain an entity corresponding to the requested resource. In a POST request, the response will contain an entity describing or containing the result of the action. |
|
The request has been fulfilled and resulted in a new resource being created. |
|
The request has been accepted and is being processed asynchronously Standard response for successful HTTP requests which invoke back-end services. |
|
The server successfully processed the request, but is not returning any content. |
|
The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). |
|
The request lacks valid authentication credentials for the target resource. |
|
The request is authenticated with valid credentials however that set of credentials is not authorized to access this resource. |
|
The requested resource could not be found but may be available again in the future. Subsequent requests by the client are permissible. |
Resources
Organization
Find Organizations
GET /organizations
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
active |
Boolean |
true |
|
mfaProviders |
Object |
true |
Must be one of [None, GoogleAuthenticator]. |
includeDeleted |
Boolean |
true |
Default value: 'false'. |
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
name |
String |
true |
|
label |
String |
true |
|
identityProviders |
Array[Object] |
true |
|
identityProviders[].id |
String |
true |
|
identityProviders[].organizationId |
String |
true |
|
identityProviders[].auth0ConnectionId |
String |
true |
|
identityProviders[].name |
String |
true |
|
identityProviders[].auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
identityProviders[].active |
Boolean |
true |
|
identityProviders[].createdAt |
Object |
true |
|
identityProviders[].updatedAt |
Object |
true |
|
identityProviders[].deletedAt |
Object |
true |
|
defaultRoles |
Array[Object] |
true |
|
defaultRoles[].id |
String |
true |
|
defaultRoles[].organizationId |
String |
true |
|
defaultRoles[].name |
String |
true |
|
defaultRoles[].roleType |
String |
true |
Must be one of [Standard, Custom]. |
defaultRoles[].roleId |
String |
true |
|
defaultRoles[].createdBy |
String |
true |
|
defaultRoles[].createdAt |
Object |
true |
|
defaultRoles[].deletedAt |
Object |
true |
|
defaultRoles[].deletedBy |
String |
true |
|
defaultRoles[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
mfaProvider |
String |
true |
Must be one of [None, GoogleAuthenticator]. |
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organizations' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 3169
[ {
"id" : "1ee4b188-c319-4d2a-8852-60f778e3cd48",
"name" : "World Wide Imports",
"label" : "WW-Imports-200",
"identityProviders" : [ {
"id" : "c8ce7ce6-bdcf-4e09-a92f-621376d03b4f",
"organizationId" : "1ee4b188-c319-4d2a-8852-60f778e3cd48",
"auth0ConnectionId" : "auth0-opaque-connection",
"name" : "Corp SAML",
"auth0ConnectionType" : "Enterprise",
"active" : true,
"createdAt" : {
"nano" : 408061000,
"epochSecond" : 1743107785
},
"updatedAt" : null,
"deletedAt" : null
}, {
"id" : "e7b37a13-020f-4dbe-9fca-845b718c7b6a",
"organizationId" : "1ee4b188-c319-4d2a-8852-60f778e3cd48",
"auth0ConnectionId" : "auth0-opaque-connectionId-201",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 373035000,
"epochSecond" : 1743107785
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ ],
"active" : true,
"mfaProvider" : null,
"createdAt" : {
"nano" : 371396000,
"epochSecond" : 1743107785
},
"updatedAt" : null,
"deletedAt" : null,
"deleted" : false
}, {
"id" : "2c29a222-a969-4e2b-8492-b3664b7ba806",
"name" : "World Wide Imports",
"label" : "WW-Imports-61",
"identityProviders" : [ {
"id" : "999af9fa-ff57-481a-ac18-d6d5f84750c5",
"organizationId" : "2c29a222-a969-4e2b-8492-b3664b7ba806",
"auth0ConnectionId" : "auth0-opaque-connectionId-62",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 585117000,
"epochSecond" : 1743107781
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ {
"id" : "144725a2-fb84-4599-a255-09c33f5f7d22",
"organizationId" : "2c29a222-a969-4e2b-8492-b3664b7ba806",
"name" : "Standard Role - 7fb6eae6-0089-48fa-8869-2883378dc17b",
"roleType" : "Standard",
"roleId" : "7fb6eae6-0089-48fa-8869-2883378dc17b",
"createdBy" : "80ed2cf5-4111-47e4-9af3-6d13967cbeed",
"createdAt" : {
"nano" : 648954000,
"epochSecond" : 1743107781
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ],
"active" : true,
"mfaProvider" : null,
"createdAt" : {
"nano" : 582276000,
"epochSecond" : 1743107781
},
"updatedAt" : null,
"deletedAt" : null,
"deleted" : false
}, {
"id" : "2fa1f8bb-0d71-47d4-818d-e209b4c40e39",
"name" : "World Wide Imports",
"label" : "WW-Imports-202",
"identityProviders" : [ {
"id" : "b5b97965-2d31-4ab3-b075-7220b3d34a82",
"organizationId" : "2fa1f8bb-0d71-47d4-818d-e209b4c40e39",
"auth0ConnectionId" : "auth0-opaque-connectionId-203",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 496601000,
"epochSecond" : 1743107785
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ ],
"active" : true,
"mfaProvider" : null,
"createdAt" : {
"nano" : 495099000,
"epochSecond" : 1743107785
},
"updatedAt" : null,
"deletedAt" : null,
"deleted" : false
} ]
Get Organization By Id
GET /organizations/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
name |
String |
true |
|
label |
String |
true |
|
identityProviders |
Array[Object] |
true |
|
identityProviders[].id |
String |
true |
|
identityProviders[].organizationId |
String |
true |
|
identityProviders[].auth0ConnectionId |
String |
true |
|
identityProviders[].name |
String |
true |
|
identityProviders[].auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
identityProviders[].active |
Boolean |
true |
|
identityProviders[].createdAt |
Object |
true |
|
identityProviders[].updatedAt |
Object |
true |
|
identityProviders[].deletedAt |
Object |
true |
|
defaultRoles |
Array[Object] |
true |
|
defaultRoles[].id |
String |
true |
|
defaultRoles[].organizationId |
String |
true |
|
defaultRoles[].name |
String |
true |
|
defaultRoles[].roleType |
String |
true |
Must be one of [Standard, Custom]. |
defaultRoles[].roleId |
String |
true |
|
defaultRoles[].createdBy |
String |
true |
|
defaultRoles[].createdAt |
Object |
true |
|
defaultRoles[].deletedAt |
Object |
true |
|
defaultRoles[].deletedBy |
String |
true |
|
defaultRoles[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
mfaProvider |
String |
true |
Must be one of [None, GoogleAuthenticator]. |
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organizations/6204c040-ec7e-4a26-b946-45fda41f104a' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2071
{
"id" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "ACME International, Inc.",
"label" : "ACME-0",
"identityProviders" : [ {
"id" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ConnectionId" : "auth0-opaque-connectionId-2",
"name" : "Google-Account",
"auth0ConnectionType" : "Social",
"active" : true,
"createdAt" : {
"nano" : 504792000,
"epochSecond" : 1743107740
},
"updatedAt" : null,
"deletedAt" : null
}, {
"id" : "e29db543-4de8-4ff2-835a-9eda0878e4a4",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ConnectionId" : "auth0-opaque-connectionId-1",
"name" : "ACME Federated Active Directory",
"auth0ConnectionType" : "Enterprise",
"active" : true,
"createdAt" : {
"nano" : 491231000,
"epochSecond" : 1743107740
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ {
"id" : "76f7c60c-40e3-4227-8164-a8fc9252192f",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Test Custom Role",
"roleType" : "Custom",
"roleId" : "ecb16786-e436-4b68-937b-e48af1d8161c",
"createdBy" : "c641be62-1bb9-4b65-8981-f083f78834d9",
"createdAt" : {
"nano" : 528681000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "e2fbad6c-5229-4a87-b783-2ac5f89a899e",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Test Std Role",
"roleType" : "Standard",
"roleId" : "c42de1a6-dc62-4336-9fed-00885481e6ac",
"createdBy" : "466e0d73-32cf-4161-8d54-96b937add2ca",
"createdAt" : {
"nano" : 513788000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ],
"active" : true,
"mfaProvider" : null,
"createdAt" : {
"nano" : 446240000,
"epochSecond" : 1743107740
},
"updatedAt" : null,
"deletedAt" : null,
"deleted" : false
}
Get Organization By Label
GET /organizations/label/{label:[-a-zA-Z0-9]{1,63}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
label |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
name |
String |
true |
|
label |
String |
true |
|
identityProviders |
Array[Object] |
true |
|
identityProviders[].id |
String |
true |
|
identityProviders[].organizationId |
String |
true |
|
identityProviders[].auth0ConnectionId |
String |
true |
|
identityProviders[].name |
String |
true |
|
identityProviders[].auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
identityProviders[].active |
Boolean |
true |
|
identityProviders[].createdAt |
Object |
true |
|
identityProviders[].updatedAt |
Object |
true |
|
identityProviders[].deletedAt |
Object |
true |
|
defaultRoles |
Array[Object] |
true |
|
defaultRoles[].id |
String |
true |
|
defaultRoles[].organizationId |
String |
true |
|
defaultRoles[].name |
String |
true |
|
defaultRoles[].roleType |
String |
true |
Must be one of [Standard, Custom]. |
defaultRoles[].roleId |
String |
true |
|
defaultRoles[].createdBy |
String |
true |
|
defaultRoles[].createdAt |
Object |
true |
|
defaultRoles[].deletedAt |
Object |
true |
|
defaultRoles[].deletedBy |
String |
true |
|
defaultRoles[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
mfaProvider |
String |
true |
Must be one of [None, GoogleAuthenticator]. |
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organizations/label/ACME-0' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2071
{
"id" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "ACME International, Inc.",
"label" : "ACME-0",
"identityProviders" : [ {
"id" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ConnectionId" : "auth0-opaque-connectionId-2",
"name" : "Google-Account",
"auth0ConnectionType" : "Social",
"active" : true,
"createdAt" : {
"nano" : 504792000,
"epochSecond" : 1743107740
},
"updatedAt" : null,
"deletedAt" : null
}, {
"id" : "e29db543-4de8-4ff2-835a-9eda0878e4a4",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ConnectionId" : "auth0-opaque-connectionId-1",
"name" : "ACME Federated Active Directory",
"auth0ConnectionType" : "Enterprise",
"active" : true,
"createdAt" : {
"nano" : 491231000,
"epochSecond" : 1743107740
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ {
"id" : "76f7c60c-40e3-4227-8164-a8fc9252192f",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Test Custom Role",
"roleType" : "Custom",
"roleId" : "ecb16786-e436-4b68-937b-e48af1d8161c",
"createdBy" : "c641be62-1bb9-4b65-8981-f083f78834d9",
"createdAt" : {
"nano" : 528681000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "e2fbad6c-5229-4a87-b783-2ac5f89a899e",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Test Std Role",
"roleType" : "Standard",
"roleId" : "c42de1a6-dc62-4336-9fed-00885481e6ac",
"createdBy" : "466e0d73-32cf-4161-8d54-96b937add2ca",
"createdAt" : {
"nano" : 513788000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ],
"active" : true,
"mfaProvider" : null,
"createdAt" : {
"nano" : 446240000,
"epochSecond" : 1743107740
},
"updatedAt" : null,
"deletedAt" : null,
"deleted" : false
}
Create Organization
POST /organizations
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
label |
String |
true |
|
auth0ConnectionId |
String |
true |
|
identityProviderName |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
name |
String |
true |
|
label |
String |
true |
|
identityProviders |
Array[Object] |
true |
|
identityProviders[].id |
String |
true |
|
identityProviders[].organizationId |
String |
true |
|
identityProviders[].auth0ConnectionId |
String |
true |
|
identityProviders[].name |
String |
true |
|
identityProviders[].auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
identityProviders[].active |
Boolean |
true |
|
identityProviders[].createdAt |
Object |
true |
|
identityProviders[].updatedAt |
Object |
true |
|
identityProviders[].deletedAt |
Object |
true |
|
defaultRoles |
Array[Object] |
true |
|
defaultRoles[].id |
String |
true |
|
defaultRoles[].organizationId |
String |
true |
|
defaultRoles[].name |
String |
true |
|
defaultRoles[].roleType |
String |
true |
Must be one of [Standard, Custom]. |
defaultRoles[].roleId |
String |
true |
|
defaultRoles[].createdBy |
String |
true |
|
defaultRoles[].createdAt |
Object |
true |
|
defaultRoles[].deletedAt |
Object |
true |
|
defaultRoles[].deletedBy |
String |
true |
|
defaultRoles[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
mfaProvider |
String |
true |
Must be one of [None, GoogleAuthenticator]. |
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organizations' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"name" : "Best Corp.",
"label" : "BEST-CORP",
"auth0ConnectionId" : "auth0-opaque-connection",
"identityProviderName" : "Corp SAML",
"auth0ConnectionType" : "Enterprise"
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 736
{
"id" : "d979f821-4a0e-47f4-84de-f7dc01fae2e4",
"name" : "Best Corp.",
"label" : "BEST-CORP",
"identityProviders" : [ {
"id" : "3669f5da-1682-406a-9228-b894ebe704d4",
"organizationId" : "d979f821-4a0e-47f4-84de-f7dc01fae2e4",
"auth0ConnectionId" : "auth0-opaque-connection",
"name" : "Best Corp.",
"auth0ConnectionType" : "Enterprise",
"active" : true,
"createdAt" : {
"nano" : 612844000,
"epochSecond" : 1743107788
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ ],
"active" : true,
"mfaProvider" : null,
"createdAt" : {
"nano" : 611945000,
"epochSecond" : 1743107788
},
"updatedAt" : null,
"deletedAt" : null,
"deleted" : false
}
Activate Or Deactivate Organization
PUT /organizations/{id}/{action:activate|deactivate}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
|
action |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
name |
String |
true |
|
label |
String |
true |
|
identityProviders |
Array[Object] |
true |
|
identityProviders[].id |
String |
true |
|
identityProviders[].organizationId |
String |
true |
|
identityProviders[].auth0ConnectionId |
String |
true |
|
identityProviders[].name |
String |
true |
|
identityProviders[].auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
identityProviders[].active |
Boolean |
true |
|
identityProviders[].createdAt |
Object |
true |
|
identityProviders[].updatedAt |
Object |
true |
|
identityProviders[].deletedAt |
Object |
true |
|
defaultRoles |
Array[Object] |
true |
|
defaultRoles[].id |
String |
true |
|
defaultRoles[].organizationId |
String |
true |
|
defaultRoles[].name |
String |
true |
|
defaultRoles[].roleType |
String |
true |
Must be one of [Standard, Custom]. |
defaultRoles[].roleId |
String |
true |
|
defaultRoles[].createdBy |
String |
true |
|
defaultRoles[].createdAt |
Object |
true |
|
defaultRoles[].deletedAt |
Object |
true |
|
defaultRoles[].deletedBy |
String |
true |
|
defaultRoles[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
mfaProvider |
String |
true |
Must be one of [None, GoogleAuthenticator]. |
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organizations/8bf9f9a7-adf4-4238-8990-8bc04f128382/deactivate' -i -X PUT
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 817
{
"id" : "8bf9f9a7-adf4-4238-8990-8bc04f128382",
"name" : "World Wide Imports",
"label" : "WW-Imports-244",
"identityProviders" : [ {
"id" : "7abe8c7a-e4b0-48ea-a9c2-6ebe4782d6d4",
"organizationId" : "8bf9f9a7-adf4-4238-8990-8bc04f128382",
"auth0ConnectionId" : "auth0-opaque-connectionId-245",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 170686000,
"epochSecond" : 1743107789
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ ],
"active" : false,
"mfaProvider" : null,
"createdAt" : {
"nano" : 169507000,
"epochSecond" : 1743107789
},
"updatedAt" : {
"nano" : 189219000,
"epochSecond" : 1743107789
},
"deletedAt" : null,
"deleted" : false
}
Add Identity Provider
POST /organizations/{id}/identity-providers
Authorization
This endpoint requires:
-
create-identity-provider
action on thisorganization
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
auth0ConnectionId |
String |
true |
|
identityProviderName |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
name |
String |
true |
|
label |
String |
true |
|
identityProviders |
Array[Object] |
true |
|
identityProviders[].id |
String |
true |
|
identityProviders[].organizationId |
String |
true |
|
identityProviders[].auth0ConnectionId |
String |
true |
|
identityProviders[].name |
String |
true |
|
identityProviders[].auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
identityProviders[].active |
Boolean |
true |
|
identityProviders[].createdAt |
Object |
true |
|
identityProviders[].updatedAt |
Object |
true |
|
identityProviders[].deletedAt |
Object |
true |
|
defaultRoles |
Array[Object] |
true |
|
defaultRoles[].id |
String |
true |
|
defaultRoles[].organizationId |
String |
true |
|
defaultRoles[].name |
String |
true |
|
defaultRoles[].roleType |
String |
true |
Must be one of [Standard, Custom]. |
defaultRoles[].roleId |
String |
true |
|
defaultRoles[].createdBy |
String |
true |
|
defaultRoles[].createdAt |
Object |
true |
|
defaultRoles[].deletedAt |
Object |
true |
|
defaultRoles[].deletedBy |
String |
true |
|
defaultRoles[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
mfaProvider |
String |
true |
Must be one of [None, GoogleAuthenticator]. |
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organizations/af713ff9-de4d-4515-8efe-c2d46dfc5489/identity-providers' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"auth0ConnectionId" : "auth0-opaque-connection",
"identityProviderName" : "Corp SAML",
"auth0ConnectionType" : "Enterprise"
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 1156
{
"id" : "af713ff9-de4d-4515-8efe-c2d46dfc5489",
"name" : "World Wide Imports",
"label" : "WW-Imports-240",
"identityProviders" : [ {
"id" : "22f12433-b5e5-4859-b374-53e50d6b9ccd",
"organizationId" : "af713ff9-de4d-4515-8efe-c2d46dfc5489",
"auth0ConnectionId" : "auth0-opaque-connection",
"name" : "Corp SAML",
"auth0ConnectionType" : "Enterprise",
"active" : true,
"createdAt" : {
"nano" : 984819000,
"epochSecond" : 1743107788
},
"updatedAt" : null,
"deletedAt" : null
}, {
"id" : "c50a4304-21e8-4891-b96f-5bc1fe8fcbb6",
"organizationId" : "af713ff9-de4d-4515-8efe-c2d46dfc5489",
"auth0ConnectionId" : "auth0-opaque-connectionId-241",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 951093000,
"epochSecond" : 1743107788
},
"updatedAt" : null,
"deletedAt" : null
} ],
"defaultRoles" : [ ],
"active" : true,
"mfaProvider" : null,
"createdAt" : {
"nano" : 945465000,
"epochSecond" : 1743107788
},
"updatedAt" : null,
"deletedAt" : null,
"deleted" : false
}
OIDC Issuers
Find Oidc Issuers
GET /oidc-issuers
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
issuer |
String |
true |
|
jwksUri |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-issuers' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1218
[ {
"id" : "3f27f92c-9b10-46bb-9a8f-7b9f5b5bf14c",
"issuer" : "https://c5e3e6a2-323f-42d4-ba3a-fc2ebb2d76e2.issuer.idp",
"jwksUri" : "https://c5e3e6a2-323f-42d4-ba3a-fc2ebb2d76e2.issuer.idp/jwks",
"active" : true,
"createdBy" : "d9d56abb-5836-47d7-97fa-c7b000df488a",
"createdAt" : {
"nano" : 949422000,
"epochSecond" : 1743107786
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "5c80197d-4676-4175-acc5-922875932680",
"issuer" : "https://c1340fd1-9900-4b40-9279-adc9b8f2294d.issuer.idp",
"jwksUri" : "https://c1340fd1-9900-4b40-9279-adc9b8f2294d.issuer.idp/jwks",
"active" : true,
"createdBy" : "bce9850d-c98a-48ca-9778-bcb9816498ba",
"createdAt" : {
"nano" : 220322000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "6c72dba0-a155-4804-9a70-89da12149793",
"issuer" : "https://accounts.google.com",
"jwksUri" : "https://www.googleapis.com/oauth2/v3/certs",
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 83987000,
"epochSecond" : 1743107736
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ]
Get Oidc Issuer
GET /oidc-issuers/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
issuer |
String |
true |
|
jwksUri |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-issuers/b335680a-72b6-48c9-9ecf-eb3497955088' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 419
{
"id" : "b335680a-72b6-48c9-9ecf-eb3497955088",
"issuer" : "https://3221a851-51e4-4afb-b676-bafebdd0a5fe.issuer.idp",
"jwksUri" : "https://3221a851-51e4-4afb-b676-bafebdd0a5fe.issuer.idp/jwks",
"active" : true,
"createdBy" : "13e2b669-b4ed-49ae-b4e3-e44d827299a3",
"createdAt" : {
"nano" : 816189000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Create Oidc Issuer
POST /oidc-issuers
Request fields
Path | Type | Optional | Description |
---|---|---|---|
issuer |
String |
true |
|
jwksUri |
String |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
issuer |
String |
true |
|
jwksUri |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-issuers' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"issuer" : "https://ea5cd12d-6839-4843-a9d7-b4790b66eedd.issuer.idp",
"jwksUri" : "https://ea5cd12d-6839-4843-a9d7-b4790b66eedd.issuer.idp/jwks",
"active" : true
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 419
{
"id" : "aff9b997-fa8c-4646-bb19-3ab422cb791d",
"issuer" : "https://ea5cd12d-6839-4843-a9d7-b4790b66eedd.issuer.idp",
"jwksUri" : "https://ea5cd12d-6839-4843-a9d7-b4790b66eedd.issuer.idp/jwks",
"active" : true,
"createdBy" : "9b65c742-bc43-4336-b5ae-e4538bc5ec6b",
"createdAt" : {
"nano" : 785013000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Update Oidc Issuer
PATCH /oidc-issuers/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
issuer |
String |
true |
|
jwksUri |
String |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
issuer |
String |
true |
|
jwksUri |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-issuers/903db59a-423b-4e3e-a890-6553d4b30952' -i -X PATCH \
-H 'Content-Type: application/json' \
-d '{
"issuer" : "https://126440bb-ca28-4def-8f72-4a551d608031.issuer.idp",
"jwksUri" : "https://126440bb-ca28-4def-8f72-4a551d608031.issuer.idp/jwks",
"active" : false
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 420
{
"id" : "903db59a-423b-4e3e-a890-6553d4b30952",
"issuer" : "https://126440bb-ca28-4def-8f72-4a551d608031.issuer.idp",
"jwksUri" : "https://126440bb-ca28-4def-8f72-4a551d608031.issuer.idp/jwks",
"active" : false,
"createdBy" : "b58caa13-549a-46b4-9b8d-fad8ec217a06",
"createdAt" : {
"nano" : 733565000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Delete Oidc Issuer
DELETE /oidc-issuers/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
issuer |
String |
true |
|
jwksUri |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-issuers/a9e5341e-4ac6-43c4-abbb-a3e9af49945b' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 508
{
"id" : "a9e5341e-4ac6-43c4-abbb-a3e9af49945b",
"issuer" : "https://223f89aa-6118-47d3-92ab-e12ba6e38229.issuer.idp",
"jwksUri" : "https://223f89aa-6118-47d3-92ab-e12ba6e38229.issuer.idp/jwks",
"active" : true,
"createdBy" : "91984c5a-5f12-4200-b1ca-8f6277e38868",
"createdAt" : {
"nano" : 851972000,
"epochSecond" : 1743107787
},
"deletedAt" : {
"nano" : 860799000,
"epochSecond" : 1743107787
},
"deletedBy" : "2375d371-9212-4158-9877-8e5305493fe2",
"deleted" : true
}
OIDC Public Clients
Find Oidc Public Clients
GET /oidc-public-clients
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
clientId |
String |
true |
|
clientSecret |
String |
true |
|
authorizationEndpoint |
String |
true |
|
tokenEndpoint |
String |
true |
|
userInfoEndpoint |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-public-clients' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2068
[ {
"id" : "290cc71d-cbd0-4c44-bf9e-a9d33a7314e6",
"oidcIssuerId" : "fc221f2c-e97f-4994-a29e-afc26395f6b6",
"clientId" : "{clientId}",
"clientSecret" : "{clientSecret}",
"authorizationEndpoint" : "https://{auth0-tenant}.auth0.com/authorize",
"tokenEndpoint" : "https://{auth0-tenant}.auth0.com/oauth/token",
"userInfoEndpoint" : "https://{auth0-tenant}.auth0.com/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 87614000,
"epochSecond" : 1743107736
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "86432b89-4b76-4cf2-bd0f-811ce9a9365d",
"oidcIssuerId" : "b7a6eb12-dbd1-4f00-8c90-1baf068c92d1",
"clientId" : "clientId-21ee98b3-d493-41de-8857-03fa4039629a",
"clientSecret" : "clientSecret-728a1510-a956-43dc-a853-fd0f6fdbd9d4",
"authorizationEndpoint" : "https://b55793ac-bbfb-4b51-bde4-686d60ce3b99.issuer.idp/authorize",
"tokenEndpoint" : "https://b55793ac-bbfb-4b51-bde4-686d60ce3b99.issuer.idp/token",
"userInfoEndpoint" : "https://b55793ac-bbfb-4b51-bde4-686d60ce3b99.issuer.idp/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "2a35d425-bcd9-4457-b5e0-8fc1c85fc054",
"createdAt" : {
"nano" : 923753000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "f4e6fcd0-1839-4566-8828-856e42b8f156",
"oidcIssuerId" : "6c72dba0-a155-4804-9a70-89da12149793",
"clientId" : "{clientId}",
"clientSecret" : "{clientSecret}",
"authorizationEndpoint" : "https://accounts.google.com/o/oauth2/v2/auth",
"tokenEndpoint" : "https://oauth2.googleapis.com/token",
"userInfoEndpoint" : "https://openidconnect.googleapis.com/v1/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 87614000,
"epochSecond" : 1743107736
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ]
Get Oidc Public Client
GET /oidc-public-clients/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
clientId |
String |
true |
|
clientSecret |
String |
true |
|
authorizationEndpoint |
String |
true |
|
tokenEndpoint |
String |
true |
|
userInfoEndpoint |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-public-clients/d0248f52-5f69-4669-a7f7-36d4c93912a9' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 776
{
"id" : "d0248f52-5f69-4669-a7f7-36d4c93912a9",
"oidcIssuerId" : "475966ae-f874-4775-b5d6-084c6412dc73",
"clientId" : "clientId-9e14c579-69b7-461a-bb50-b651e89fce17",
"clientSecret" : "clientSecret-4acbcc90-f14f-4e85-b5bc-cd13ca811321",
"authorizationEndpoint" : "https://f15e6be3-6cce-47df-aa05-8cc23d3d06e1.issuer.idp/authorize",
"tokenEndpoint" : "https://f15e6be3-6cce-47df-aa05-8cc23d3d06e1.issuer.idp/token",
"userInfoEndpoint" : "https://f15e6be3-6cce-47df-aa05-8cc23d3d06e1.issuer.idp/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "bb53b028-d9e6-4cb2-a504-64b3c1160d9d",
"createdAt" : {
"nano" : 394956000,
"epochSecond" : 1743107788
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Create Oidc Public Client
POST /oidc-public-clients
Request fields
Path | Type | Optional | Description |
---|---|---|---|
oidcIssuerId |
String |
true |
|
clientId |
String |
true |
|
clientSecret |
String |
true |
|
authorizationEndpoint |
String |
true |
|
tokenEndpoint |
String |
true |
|
userInfoEndpoint |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
clientId |
String |
true |
|
clientSecret |
String |
true |
|
authorizationEndpoint |
String |
true |
|
tokenEndpoint |
String |
true |
|
userInfoEndpoint |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-public-clients' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"oidcIssuerId" : "6f092f2b-b265-4c39-9d40-e9dec3daab5d",
"clientId" : "clientId-54350092-56e6-439f-a1cb-11c978c3c392",
"clientSecret" : "clientSecret-6faa56d1-dd7f-4b20-8404-0f21da751e16",
"authorizationEndpoint" : "https://1696bb29-bdab-49e4-abdd-956627d3024e.issuer.idp/authorize",
"tokenEndpoint" : "https://1696bb29-bdab-49e4-abdd-956627d3024e.issuer.idp/token",
"userInfoEndpoint" : "https://1696bb29-bdab-49e4-abdd-956627d3024e.issuer.idp/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : true
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 776
{
"id" : "70641203-b214-4fe0-bea8-cccf7702884c",
"oidcIssuerId" : "6f092f2b-b265-4c39-9d40-e9dec3daab5d",
"clientId" : "clientId-54350092-56e6-439f-a1cb-11c978c3c392",
"clientSecret" : "clientSecret-6faa56d1-dd7f-4b20-8404-0f21da751e16",
"authorizationEndpoint" : "https://1696bb29-bdab-49e4-abdd-956627d3024e.issuer.idp/authorize",
"tokenEndpoint" : "https://1696bb29-bdab-49e4-abdd-956627d3024e.issuer.idp/token",
"userInfoEndpoint" : "https://1696bb29-bdab-49e4-abdd-956627d3024e.issuer.idp/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "a7678721-e4bc-41a1-ae89-ff2f459a2f83",
"createdAt" : {
"nano" : 359416000,
"epochSecond" : 1743107788
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Update Oidc Public Client
PATCH /oidc-public-clients/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
clientId |
String |
true |
|
clientSecret |
String |
true |
|
authorizationEndpoint |
String |
true |
|
tokenEndpoint |
String |
true |
|
userInfoEndpoint |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
clientId |
String |
true |
|
clientSecret |
String |
true |
|
authorizationEndpoint |
String |
true |
|
tokenEndpoint |
String |
true |
|
userInfoEndpoint |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-public-clients/99d549b9-b6e6-4cfa-bc82-bb8772d2bdd7' -i -X PATCH \
-H 'Content-Type: application/json' \
-d '{
"clientId" : "clientId-6eceed8d-78d3-4534-b6a8-f5b647ee5fdf",
"clientSecret" : "clientSecret-fe88a9bf-ad18-47ad-9642-059f88ad1ba1",
"authorizationEndpoint" : "https://c750382c-e5c8-4692-b38d-01396286a818.issuer.idp/authorize",
"tokenEndpoint" : "https://c750382c-e5c8-4692-b38d-01396286a818.issuer.idp/token",
"userInfoEndpoint" : "https://c750382c-e5c8-4692-b38d-01396286a818.issuer.idp/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : false
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 777
{
"id" : "99d549b9-b6e6-4cfa-bc82-bb8772d2bdd7",
"oidcIssuerId" : "42d685f1-ae61-4f0c-88c1-9f18a6d37cdd",
"clientId" : "clientId-6eceed8d-78d3-4534-b6a8-f5b647ee5fdf",
"clientSecret" : "clientSecret-fe88a9bf-ad18-47ad-9642-059f88ad1ba1",
"authorizationEndpoint" : "https://c750382c-e5c8-4692-b38d-01396286a818.issuer.idp/authorize",
"tokenEndpoint" : "https://c750382c-e5c8-4692-b38d-01396286a818.issuer.idp/token",
"userInfoEndpoint" : "https://c750382c-e5c8-4692-b38d-01396286a818.issuer.idp/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : false,
"createdBy" : "23f8e5a9-80f2-45b7-b065-062b4a0d8cc6",
"createdAt" : {
"nano" : 298616000,
"epochSecond" : 1743107788
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Delete Oidc Public Client
DELETE /oidc-public-clients/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
clientId |
String |
true |
|
clientSecret |
String |
true |
|
authorizationEndpoint |
String |
true |
|
tokenEndpoint |
String |
true |
|
userInfoEndpoint |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-public-clients/041f4a5e-bb96-4047-ad92-6e7f17babbd1' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 865
{
"id" : "041f4a5e-bb96-4047-ad92-6e7f17babbd1",
"oidcIssuerId" : "06c50390-5bf7-4184-bceb-411782a26013",
"clientId" : "clientId-46a340a5-6eee-4f19-b18f-26296ddfee5f",
"clientSecret" : "clientSecret-0b9097d6-7880-45be-8951-dd13641dcb3c",
"authorizationEndpoint" : "https://4049c4d4-0f97-4df3-9af6-e0b77bfc443f.issuer.idp/authorize",
"tokenEndpoint" : "https://4049c4d4-0f97-4df3-9af6-e0b77bfc443f.issuer.idp/token",
"userInfoEndpoint" : "https://4049c4d4-0f97-4df3-9af6-e0b77bfc443f.issuer.idp/userinfo",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "5c562293-0d5a-48ae-8faf-bed2e1d1d3fe",
"createdAt" : {
"nano" : 453710000,
"epochSecond" : 1743107788
},
"deletedAt" : {
"nano" : 475136000,
"epochSecond" : 1743107788
},
"deletedBy" : "4c58c57e-ee95-443b-bccd-212c6d569eba",
"deleted" : true
}
Organization to OIDC Public Client Mappings
Find Organization Oidc Public Client Mappings
GET /organization-oidc-public-client-mappings
Authorization
This endpoint requires:
-
read
action on thisorganization-oidc-public-client-mapping
resource.
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
oidcPublicClientId |
String |
true |
|
name |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-oidc-public-client-mappings' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1314
[ {
"id" : "38d7eb5c-c5be-4ae9-bfc8-5fe7b2f16744",
"organizationId" : "f86122fb-316b-4427-8c38-248165bf4504",
"oidcPublicClientId" : "f4e6fcd0-1839-4566-8828-856e42b8f156",
"name" : "NFSUPPORT Google Account",
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 775991000,
"epochSecond" : 1743107735
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "711516f4-b951-464d-8287-def9619a7413",
"organizationId" : "cc2433a9-c951-4a30-a57f-c23567fe7b87",
"oidcPublicClientId" : "f4e6fcd0-1839-4566-8828-856e42b8f156",
"name" : "NFSUPPORT-RO Google Account",
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 788509000,
"epochSecond" : 1743107735
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "8daeb413-a7dc-4a45-a83b-ce14f7621162",
"organizationId" : "95068bb0-864b-4930-b06e-9acf4957c826",
"oidcPublicClientId" : "f4e6fcd0-1839-4566-8828-856e42b8f156",
"name" : "NetFoundry Google Account",
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 822778000,
"epochSecond" : 1743107735
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ]
Get Organization Oidc Public Client Mapping
GET /organization-oidc-public-client-mappings/{id}
Authorization
This endpoint requires:
-
read
action on thisorganization-oidc-public-client-mapping
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
oidcPublicClientId |
String |
true |
|
name |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-oidc-public-client-mappings/bf50f99e-7c42-4012-8773-c43d97812304' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 461
{
"id" : "bf50f99e-7c42-4012-8773-c43d97812304",
"organizationId" : "372cb4e8-b380-4fb4-87d6-5969f770226a",
"oidcPublicClientId" : "0012c9e8-f58b-4611-98b7-ebf6c7796b43",
"name" : "console-client-64fb1f0f-dd53-4145-9fdf-222285cd81d1",
"active" : true,
"createdBy" : "9f8c0438-a8ad-4f7d-b510-0c715f5dcfcd",
"createdAt" : {
"nano" : 783591000,
"epochSecond" : 1743107789
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Create Organization Oidc Public Client Mapping
POST /organization-oidc-public-client-mappings
Authorization
This endpoint requires:
-
create
action on thisorganization-oidc-public-client-mapping
resource. -
read
action on theoidc-public-client
resource identified by theoidcPublicClientId
property.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
organizationId |
String |
true |
|
oidcPublicClientId |
String |
true |
|
name |
String |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
oidcPublicClientId |
String |
true |
|
name |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-oidc-public-client-mappings' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"organizationId" : "0343d02f-e445-4df5-8af3-2ba07cf85d65",
"oidcPublicClientId" : "2cf14891-6582-4c4f-9ef9-78d839b16860",
"name" : "console-client-d0d6189e-a841-4b57-ad57-3faac73b81c7",
"active" : true
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 461
{
"id" : "1ac1efcd-43dc-47b8-8a15-9fbd8adf473e",
"organizationId" : "0343d02f-e445-4df5-8af3-2ba07cf85d65",
"oidcPublicClientId" : "2cf14891-6582-4c4f-9ef9-78d839b16860",
"name" : "console-client-d0d6189e-a841-4b57-ad57-3faac73b81c7",
"active" : true,
"createdBy" : "3e8f47f5-e574-46cc-a31d-60a7eff90cc3",
"createdAt" : {
"nano" : 743291000,
"epochSecond" : 1743107789
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Update Organization Oidc Public Client Mapping
PATCH /organization-oidc-public-client-mappings/{id}
Authorization
This endpoint requires:
-
update
action on thisorganization-oidc-public-client-mapping
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
oidcPublicClientId |
String |
true |
|
name |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-oidc-public-client-mappings/5cac7edf-4ed3-4cd6-812c-00ac016e33a0' -i -X PATCH \
-H 'Content-Type: application/json' \
-d '{
"name" : "custom-client-fe54c486-8eb3-4326-8cb7-e1453fc3960f",
"active" : false
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 461
{
"id" : "5cac7edf-4ed3-4cd6-812c-00ac016e33a0",
"organizationId" : "0c0351c0-15a4-4371-8a12-a16083f0f317",
"oidcPublicClientId" : "e25957ec-98a5-4f72-96f9-3599f11df1ec",
"name" : "custom-client-fe54c486-8eb3-4326-8cb7-e1453fc3960f",
"active" : false,
"createdBy" : "1d26375a-5922-4941-a41d-b8e38c4c2898",
"createdAt" : {
"nano" : 666389000,
"epochSecond" : 1743107789
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Delete Organization Oidc Public Client Mapping
DELETE /organization-oidc-public-client-mappings/{id}
Authorization
This endpoint requires:
-
delete
action on thisorganization-oidc-public-client-mapping
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
oidcPublicClientId |
String |
true |
|
name |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-oidc-public-client-mappings/ac62cc65-6f29-45da-a107-37d6497135c5' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 550
{
"id" : "ac62cc65-6f29-45da-a107-37d6497135c5",
"organizationId" : "97b34cdf-4d5d-46a1-a1f4-634da90c4666",
"oidcPublicClientId" : "ed7a8805-360a-407a-80e4-29ad5c244347",
"name" : "console-client-a916c9e1-0b1f-4aaa-9d3a-9a18c0a96bd7",
"active" : true,
"createdBy" : "de908c13-f18e-43ce-9d93-e84d764022b2",
"createdAt" : {
"nano" : 826466000,
"epochSecond" : 1743107789
},
"deletedAt" : {
"nano" : 834509000,
"epochSecond" : 1743107789
},
"deletedBy" : "782f0f9d-8b42-413c-837b-e1eda9b5f3a3",
"deleted" : true
}
OIDC Audiences
Find Oidc Audiences
GET /oidc-audiences
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
audience |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-audiences' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1280
[ {
"id" : "073b331f-a5d8-45c3-9fd1-136a2780fb93",
"oidcIssuerId" : "3f27f92c-9b10-46bb-9a8f-7b9f5b5bf14c",
"audience" : "mop-aud-4dd943c9-ec31-46c0-b5b2-5cda8937b7a6",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "a2d05a33-75a0-4e36-86ba-92e5a8dea089",
"createdAt" : {
"nano" : 961073000,
"epochSecond" : 1743107786
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "6a4f65ad-9db8-4ea7-b404-1d5c5f85cbdf",
"oidcIssuerId" : "fc221f2c-e97f-4994-a29e-afc26395f6b6",
"audience" : "https://gateway.{env}.netfoundry.io/",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 94261000,
"epochSecond" : 1743107736
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "b71d8edd-6bf1-4ed3-84e8-f3b5fe82868f",
"oidcIssuerId" : "6c72dba0-a155-4804-9a70-89da12149793",
"audience" : "https://gateway.{env}.netfoundry.io/",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 94261000,
"epochSecond" : 1743107736
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ]
Get Oidc Audience
GET /oidc-audiences/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
audience |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-audiences/06468a3c-8312-426e-9c0e-ab366a8e8e4e' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 430
{
"id" : "06468a3c-8312-426e-9c0e-ab366a8e8e4e",
"oidcIssuerId" : "7ea72f2c-8f38-4f1d-a294-e2bec963d5d6",
"audience" : "mop-aud-d8895253-b4d2-4670-9e10-b6f328ceba6f",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "d3ec9212-c718-4325-bede-5a52f50cf6ce",
"createdAt" : {
"nano" : 335471000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Create Oidc Audience
POST /oidc-audiences
Request fields
Path | Type | Optional | Description |
---|---|---|---|
oidcIssuerId |
String |
true |
|
audience |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
audience |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-audiences' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"oidcIssuerId" : "9cba8640-2001-4ebb-85ec-a1ffd3a3cdfc",
"audience" : "mop-aud-6ddd1142-55d7-40b9-b3ea-996a455e7439",
"restrictedToOrganizationIds" : [ ],
"active" : true
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 430
{
"id" : "1e1a708c-9fcf-4209-a842-b919f04a7a0d",
"oidcIssuerId" : "9cba8640-2001-4ebb-85ec-a1ffd3a3cdfc",
"audience" : "mop-aud-6ddd1142-55d7-40b9-b3ea-996a455e7439",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "b0c65b67-b219-4216-8633-517d70907b09",
"createdAt" : {
"nano" : 300197000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Update Oidc Audience
PATCH /oidc-audiences/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
audience |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
audience |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-audiences/86bf4ecd-2d3d-4c83-974a-4ab6eecfa970' -i -X PATCH \
-H 'Content-Type: application/json' \
-d '{
"audience" : "mop-aud-4017e4db-d5f9-4adb-a94b-5076a5e130ec",
"restrictedToOrganizationIds" : [ ],
"active" : false
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 431
{
"id" : "86bf4ecd-2d3d-4c83-974a-4ab6eecfa970",
"oidcIssuerId" : "5c80197d-4676-4175-acc5-922875932680",
"audience" : "mop-aud-4017e4db-d5f9-4adb-a94b-5076a5e130ec",
"restrictedToOrganizationIds" : [ ],
"active" : false,
"createdBy" : "46acd0f4-85f5-4cca-8340-b8cc29d13a50",
"createdAt" : {
"nano" : 222985000,
"epochSecond" : 1743107787
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Delete Oidc Audience
DELETE /oidc-audiences/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
oidcIssuerId |
String |
true |
|
audience |
String |
true |
|
restrictedToOrganizationIds |
Array[Object] |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/oidc-audiences/0a4536b0-4781-4cd2-a200-c51e54399f96' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 519
{
"id" : "0a4536b0-4781-4cd2-a200-c51e54399f96",
"oidcIssuerId" : "d8028e2b-d406-481d-84bf-701812905649",
"audience" : "mop-aud-154480b2-1e5a-4c32-b749-5f2cae52b3c3",
"restrictedToOrganizationIds" : [ ],
"active" : true,
"createdBy" : "dedd9340-3769-4c28-8fe3-449057d463d0",
"createdAt" : {
"nano" : 375982000,
"epochSecond" : 1743107787
},
"deletedAt" : {
"nano" : 389769000,
"epochSecond" : 1743107787
},
"deletedBy" : "62f6ac77-f11b-4e7f-b226-9cacee236cce",
"deleted" : true
}
User Identity to OIDC Audience Mappings
Find User Identity Audience Mappings
GET /user-identity-oidc-audience-mappings
Authorization
This endpoint requires:
-
read
action on thisuser-identity-oidc-audience-mapping
resource.
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
oidcAudienceId |
String |
true |
|
subject |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identity-oidc-audience-mappings' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 3
[ ]
Get User Identity Audience Mapping
GET /user-identity-oidc-audience-mappings/{id}
Authorization
This endpoint requires:
-
read
action on thisuser-identity-oidc-audience-mapping
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
oidcAudienceId |
String |
true |
|
subject |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identity-oidc-audience-mappings/d8315f8c-d285-417d-89f3-5aca2f5d680e' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 460
{
"id" : "d8315f8c-d285-417d-89f3-5aca2f5d680e",
"userIdentityId" : "e84424b0-9419-4872-96f3-30a470b26263",
"oidcAudienceId" : "11afce57-e32a-4037-9546-5e74db4ca9c7",
"subject" : "console-client-e75c354d-b741-46b9-b225-7c45cfb7c92c",
"active" : true,
"createdBy" : "8e94effd-3eb9-4ffb-afa4-f325956409bf",
"createdAt" : {
"nano" : 126218000,
"epochSecond" : 1743107792
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Create User Identity Audience Mapping
POST /user-identity-oidc-audience-mappings
Authorization
This endpoint requires:
-
create
action on thisuser-identity-oidc-audience-mapping
resource. -
create-identity-mapping
action on theuser-identity
resource identified by theuserIdentityId
property. -
read
action on theoidc-audience
resource identified by theoidcAudienceId
property.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
userIdentityId |
String |
true |
|
oidcAudienceId |
String |
true |
|
subject |
String |
true |
|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
oidcAudienceId |
String |
true |
|
subject |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identity-oidc-audience-mappings' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"userIdentityId" : "8e81fdbb-7e36-4021-8d3a-798ab6d92d82",
"oidcAudienceId" : "5c26063e-3bab-4b6a-9c4e-d4eb8f12959e",
"subject" : "console-client-e37f0a50-7b04-414d-82ac-3dedeac6a005",
"active" : true
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 459
{
"id" : "73a14d45-b96d-45f1-9889-1dc7f0bf1d33",
"userIdentityId" : "8e81fdbb-7e36-4021-8d3a-798ab6d92d82",
"oidcAudienceId" : "5c26063e-3bab-4b6a-9c4e-d4eb8f12959e",
"subject" : "console-client-e37f0a50-7b04-414d-82ac-3dedeac6a005",
"active" : true,
"createdBy" : "5a77303d-fa26-44c7-bc16-d573583c30eb",
"createdAt" : {
"nano" : 62249000,
"epochSecond" : 1743107792
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Update User Identity Audience Mapping
PATCH /user-identity-oidc-audience-mappings/{id}
Authorization
This endpoint requires:
-
update
action on thisuser-identity-oidc-audience-mapping
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
active |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
oidcAudienceId |
String |
true |
|
subject |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identity-oidc-audience-mappings/1a369099-479a-434d-83a2-7512de14abcb' -i -X PATCH \
-H 'Content-Type: application/json' \
-d '{
"active" : false
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 461
{
"id" : "1a369099-479a-434d-83a2-7512de14abcb",
"userIdentityId" : "0b8ff6f5-85b7-46dc-8c24-6b1c7a2e5bd0",
"oidcAudienceId" : "97c8e437-a3de-4807-b3b8-45eaf5bdd65a",
"subject" : "console-client-ab061264-60ea-43a4-91e9-79dacc013b14",
"active" : false,
"createdBy" : "9c32e685-0528-4248-977b-1d712ecea62b",
"createdAt" : {
"nano" : 975147000,
"epochSecond" : 1743107791
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Delete User Identity Audience Mapping
DELETE /user-identity-oidc-audience-mappings/{id}
Authorization
This endpoint requires:
-
delete
action on thisuser-identity-oidc-audience-mapping
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
oidcAudienceId |
String |
true |
|
subject |
String |
true |
|
active |
Boolean |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identity-oidc-audience-mappings/d7d8195e-de17-4e91-a067-14d303c47262' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 549
{
"id" : "d7d8195e-de17-4e91-a067-14d303c47262",
"userIdentityId" : "e8399940-2bda-4a7e-9708-8a37c3b93172",
"oidcAudienceId" : "eaeaee5d-8677-483f-bc28-555776d78737",
"subject" : "console-client-08766854-fb83-4a58-a1f6-41c0b26bb5ab",
"active" : true,
"createdBy" : "bdc2c543-7f05-43e2-a1da-ecf7968ad198",
"createdAt" : {
"nano" : 176417000,
"epochSecond" : 1743107792
},
"deletedAt" : {
"nano" : 191595000,
"epochSecond" : 1743107792
},
"deletedBy" : "b7e9a9c3-5bcf-470e-be41-36dcc476fe38",
"deleted" : true
}
Identity Providers
Find Identity Providers
GET /identity-providers
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
organizationId |
Object |
true |
|
auth0ConnectionId |
Object |
true |
|
auth0ConnectionType |
Object |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
active |
Boolean |
true |
|
deleted |
Object |
true |
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ConnectionId |
String |
true |
|
name |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-providers' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1146
[ {
"id" : "06536834-2c39-4463-aa3e-ea6daf590e14",
"organizationId" : "d3249709-4e4d-4a8a-8579-6ca8496ac0cb",
"auth0ConnectionId" : "auth0-opaque-connectionId-98",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 949209000,
"epochSecond" : 1743107782
},
"updatedAt" : null,
"deletedAt" : null
}, {
"id" : "0dee69c6-edf5-499d-91c2-53eb0c800113",
"organizationId" : "b51b352c-875e-44bc-9762-0e0db26fa8a6",
"auth0ConnectionId" : "auth0-opaque-connectionId-119",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 443708000,
"epochSecond" : 1743107783
},
"updatedAt" : null,
"deletedAt" : null
}, {
"id" : "2f3ce371-028d-4613-a637-9b62e0dd8be1",
"organizationId" : "b6941309-c8da-4bfd-9ad9-c48cc3a5aa25",
"auth0ConnectionId" : "auth0-opaque-connectionId-52",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 427867000,
"epochSecond" : 1743107781
},
"updatedAt" : null,
"deletedAt" : null
} ]
Get Identity Provider
GET /identity-providers/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ConnectionId |
String |
true |
|
name |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-providers/a6756938-01d5-4dcc-a192-d0cd63f55eb3' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 373
{
"id" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ConnectionId" : "auth0-opaque-connectionId-2",
"name" : "Google-Account",
"auth0ConnectionType" : "Social",
"active" : true,
"createdAt" : {
"nano" : 504792000,
"epochSecond" : 1743107740
},
"updatedAt" : null,
"deletedAt" : null
}
Create Identity Provider
POST /identity-providers
Request fields
Path | Type | Optional | Description |
---|---|---|---|
organizationId |
String |
true |
|
auth0ConnectionId |
String |
true |
|
name |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ConnectionId |
String |
true |
|
name |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-providers' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"organizationId" : "1ee4b188-c319-4d2a-8852-60f778e3cd48",
"auth0ConnectionId" : "auth0-opaque-connection",
"name" : "Corp SAML",
"auth0ConnectionType" : "Enterprise"
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 368
{
"id" : "c8ce7ce6-bdcf-4e09-a92f-621376d03b4f",
"organizationId" : "1ee4b188-c319-4d2a-8852-60f778e3cd48",
"auth0ConnectionId" : "auth0-opaque-connection",
"name" : "Corp SAML",
"auth0ConnectionType" : "Enterprise",
"active" : true,
"createdAt" : {
"nano" : 408061000,
"epochSecond" : 1743107785
},
"updatedAt" : null,
"deletedAt" : null
}
Update Identity Provider
PUT /identity-providers/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ConnectionId |
String |
true |
|
name |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-providers/aa6d5efd-f47e-4c13-87f9-9794c7484919' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"name" : "New IdP Name"
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 431
{
"id" : "aa6d5efd-f47e-4c13-87f9-9794c7484919",
"organizationId" : "3e52068d-1b61-4f1b-ba39-b2afa34d8917",
"auth0ConnectionId" : "auth0-opaque-connectionId-209",
"name" : "New IdP Name",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 683375000,
"epochSecond" : 1743107785
},
"updatedAt" : {
"nano" : 699187000,
"epochSecond" : 1743107785
},
"deletedAt" : null
}
Activate Or Deactivate Identity Provider
PUT /identity-providers/{id}/{action:activate|deactivate}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
|
action |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ConnectionId |
String |
true |
|
name |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-providers/b5b97965-2d31-4ab3-b075-7220b3d34a82/activate' -i -X PUT
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 380
{
"id" : "b5b97965-2d31-4ab3-b075-7220b3d34a82",
"organizationId" : "2fa1f8bb-0d71-47d4-818d-e209b4c40e39",
"auth0ConnectionId" : "auth0-opaque-connectionId-203",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 496601000,
"epochSecond" : 1743107785
},
"updatedAt" : null,
"deletedAt" : null
}
Delete Identity Provider
DELETE /identity-providers/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ConnectionId |
String |
true |
|
name |
String |
true |
|
auth0ConnectionType |
String |
true |
Must be one of [Database, Social, Enterprise, Passwordless]. |
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-providers/719a7beb-0989-4333-bf88-2b9e81f528b5' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 492
{
"id" : "719a7beb-0989-4333-bf88-2b9e81f528b5",
"organizationId" : "a77053a6-5c21-41a6-badb-6eee350b28a8",
"auth0ConnectionId" : "auth0-opaque-connectionId-207",
"name" : "Username/Password",
"auth0ConnectionType" : "Database",
"active" : true,
"createdAt" : {
"nano" : 639198000,
"epochSecond" : 1743107785
},
"updatedAt" : {
"nano" : 651219000,
"epochSecond" : 1743107785
},
"deletedAt" : {
"nano" : 650000000,
"epochSecond" : 1743107785
}
}
Default Roles
Find Default Roles
GET /default-roles
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
name |
String |
true |
|
roleType |
String |
true |
Must be one of [Standard, Custom]. |
roleId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/default-roles' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1325
[ {
"id" : "10ca77e0-8886-41d7-94da-3bb1018f891c",
"organizationId" : "cc2433a9-c951-4a30-a57f-c23567fe7b87",
"name" : "NF Support - Observation",
"roleType" : "Custom",
"roleId" : "f1e3d5d9-2899-4df7-89ab-297d29cc54bc",
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 789378000,
"epochSecond" : 1743107735
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "16f73ed9-8a94-4455-8150-01e484e8b784",
"organizationId" : "f86122fb-316b-4427-8c38-248165bf4504",
"name" : "NF Support - Intervention",
"roleType" : "Custom",
"roleId" : "97315ed6-2fc7-4a40-b7ea-abe53cc6a188",
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 778055000,
"epochSecond" : 1743107735
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}, {
"id" : "1a8e8e7b-9845-4974-a921-502d2e5a6d5f",
"organizationId" : "cc2433a9-c951-4a30-a57f-c23567fe7b87",
"name" : "Network Group Admin - NF Support (NFSUP) Network Group",
"roleType" : "Standard",
"roleId" : "cf53e966-a3ad-4e80-a5fc-380fe8d48e57",
"createdBy" : "2b6f496d-36f1-4e66-a205-8abcf1d41d74",
"createdAt" : {
"nano" : 798239000,
"epochSecond" : 1743107735
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
} ]
Get Default Role
GET /default-roles/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
name |
String |
true |
|
roleType |
String |
true |
Must be one of [Standard, Custom]. |
roleId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/default-roles/76f7c60c-40e3-4227-8164-a8fc9252192f' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 420
{
"id" : "76f7c60c-40e3-4227-8164-a8fc9252192f",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Test Custom Role",
"roleType" : "Custom",
"roleId" : "ecb16786-e436-4b68-937b-e48af1d8161c",
"createdBy" : "c641be62-1bb9-4b65-8981-f083f78834d9",
"createdAt" : {
"nano" : 528681000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Create Default Role
POST /default-roles
Authorization
This endpoint requires:
-
create
action on thisdefault-role
resource. -
update
action on theorganization
resource identified by theorganization
property.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
organizationId |
String |
true |
|
roleType |
String |
true |
Must be one of [Standard, Custom]. |
roleId |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
name |
String |
true |
|
roleType |
String |
true |
Must be one of [Standard, Custom]. |
roleId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/default-roles' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"organizationId" : "2c29a222-a969-4e2b-8492-b3664b7ba806",
"roleType" : "Standard",
"roleId" : "7fb6eae6-0089-48fa-8869-2883378dc17b"
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 458
{
"id" : "144725a2-fb84-4599-a255-09c33f5f7d22",
"organizationId" : "2c29a222-a969-4e2b-8492-b3664b7ba806",
"name" : "Standard Role - 7fb6eae6-0089-48fa-8869-2883378dc17b",
"roleType" : "Standard",
"roleId" : "7fb6eae6-0089-48fa-8869-2883378dc17b",
"createdBy" : "80ed2cf5-4111-47e4-9af3-6d13967cbeed",
"createdAt" : {
"nano" : 648954000,
"epochSecond" : 1743107781
},
"deletedAt" : null,
"deletedBy" : null,
"deleted" : false
}
Delete Default Role
DELETE /default-roles/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
name |
String |
true |
|
roleType |
String |
true |
Must be one of [Standard, Custom]. |
roleId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deleted |
Boolean |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/default-roles/47e642af-77f8-4861-8443-b1912c31b68b' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 508
{
"id" : "47e642af-77f8-4861-8443-b1912c31b68b",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Test Deletion",
"roleType" : "Standard",
"roleId" : "11b080aa-ceda-4071-8831-5591d239ceee",
"createdBy" : "f176243c-d78a-48dd-bfdc-c052fd5928f1",
"createdAt" : {
"nano" : 356989000,
"epochSecond" : 1743107781
},
"deletedAt" : {
"nano" : 377000000,
"epochSecond" : 1743107781
},
"deletedBy" : "3ba3a207-71a2-49f5-889f-66dfa7806efa",
"deleted" : true
}
Grant Default Role
POST /default-roles/{id}/grant
Authorization
This endpoint requires:
-
read
action on thisdefault-role
resource. -
create
action on theinvitation
resource identified by theorganization
property.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
No request body.
Response fields
No response body.
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/default-roles/f8dd7d83-41b1-4be4-9d3e-991959ebd985/grant' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"includeIdentityIds" : [ "d81d76ea-24a3-444e-8c47-06c2631e45d5", "3a96cd98-a470-40b2-a1a0-0530a7f1b534", "0a41f1f4-8c2a-4416-9063-67c4cf9c6fb5" ],
"excludeIdentityIds" : [ "3458e893-16e3-41a5-b8f1-b8fbecd16e99", "3a96cd98-a470-40b2-a1a0-0530a7f1b534", "0a41f1f4-8c2a-4416-9063-67c4cf9c6fb5" ]
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 51
{
"d81d76ea-24a3-444e-8c47-06c2631e45d5" : true
}
User Identity
Get Identity
GET /identities/self
Authorization
This endpoint requires no specific permission, only an authenticated client.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
active |
Boolean |
true |
|
String |
true |
||
tenantId |
String |
true |
Deprecated.. |
organizationId |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
name |
String |
true |
|
id |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identities/self' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 718
{
"id" : "db7a1afe-3c89-4682-98ca-5619f7577a3e",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "First",
"lastName" : "Last",
"email" : "random-287@acme.com",
"identityMappings" : [ {
"id" : "96fd3165-11d8-4446-a758-fcf87b409604",
"auth0UserId" : "auth0-opaque-userId-288",
"identityProviderId" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"userIdentityId" : "db7a1afe-3c89-4682-98ca-5619f7577a3e"
} ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 954559000,
"epochSecond" : 1743107790
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "First Last",
"type" : "UserIdentity"
}
Get Identity
GET /identities/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
active |
Boolean |
true |
|
String |
true |
||
tenantId |
String |
true |
Deprecated.. |
organizationId |
String |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
name |
String |
true |
|
id |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identities/580314ac-9eee-4030-9a11-fa279563ce38' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 710
{
"id" : "580314ac-9eee-4030-9a11-fa279563ce38",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "John",
"lastName" : "Doe",
"email" : "john.doe@acme.com",
"identityMappings" : [ {
"id" : "c76b5c84-6b58-4996-8727-bacd2842403b",
"auth0UserId" : "auth0-opaque-userId-3",
"identityProviderId" : "e29db543-4de8-4ff2-835a-9eda0878e4a4",
"userIdentityId" : "580314ac-9eee-4030-9a11-fa279563ce38"
} ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 585154000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "John Doe",
"type" : "UserIdentity"
}
Find User Identities
GET /user-identities
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
||
identityMappings |
Array[Object] |
true |
|
identityMappings[].id |
String |
true |
|
identityMappings[].auth0UserId |
String |
true |
|
identityMappings[].identityProviderId |
String |
true |
|
identityMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings |
Array[Object] |
true |
|
identityAudienceMappings[].id |
String |
true |
|
identityAudienceMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings[].oidcAudienceId |
String |
true |
|
identityAudienceMappings[].subject |
String |
true |
|
identityAudienceMappings[].active |
Boolean |
true |
|
identityAudienceMappings[].createdBy |
String |
true |
|
identityAudienceMappings[].createdAt |
Object |
true |
|
identityAudienceMappings[].deletedAt |
Object |
true |
|
identityAudienceMappings[].deletedBy |
String |
true |
|
identityAudienceMappings[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
tenantId |
String |
true |
Deprecated.. |
name |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2160
[ {
"id" : "00692a33-d32c-4982-bc20-c83a9359573f",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "First",
"lastName" : "Last",
"email" : "random-85@acme.com",
"identityMappings" : [ {
"id" : "fbe7708b-991c-45d7-b501-fa7757f90d64",
"auth0UserId" : "auth0-opaque-userId-86",
"identityProviderId" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"userIdentityId" : "00692a33-d32c-4982-bc20-c83a9359573f"
} ],
"identityAudienceMappings" : [ ],
"active" : false,
"createdAt" : {
"nano" : 391135000,
"epochSecond" : 1743107782
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "First Last",
"type" : "UserIdentity"
}, {
"id" : "09762552-1a3e-4ad1-b5f2-74b3e24363d0",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "First",
"lastName" : "Last",
"email" : "random-170@acme.com",
"identityMappings" : [ {
"id" : "cbc6f22f-f1ec-4168-bd96-b94cf8dc35cc",
"auth0UserId" : "auth0-opaque-userId-171",
"identityProviderId" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"userIdentityId" : "09762552-1a3e-4ad1-b5f2-74b3e24363d0"
} ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 723233000,
"epochSecond" : 1743107784
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "First Last",
"type" : "UserIdentity"
}, {
"id" : "09ca4678-a74a-417f-b545-101c05480373",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "First",
"lastName" : "Last",
"email" : "random-148@acme.com",
"identityMappings" : [ {
"id" : "e9970406-09e0-4d5e-bb53-0ed1cdbd30b0",
"auth0UserId" : "auth0-opaque-userId-149",
"identityProviderId" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"userIdentityId" : "09ca4678-a74a-417f-b545-101c05480373"
} ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 33016000,
"epochSecond" : 1743107784
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "First Last",
"type" : "UserIdentity"
} ]
Get User Identity
GET /user-identities/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
||
identityMappings |
Array[Object] |
true |
|
identityMappings[].id |
String |
true |
|
identityMappings[].auth0UserId |
String |
true |
|
identityMappings[].identityProviderId |
String |
true |
|
identityMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings |
Array[Object] |
true |
|
identityAudienceMappings[].id |
String |
true |
|
identityAudienceMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings[].oidcAudienceId |
String |
true |
|
identityAudienceMappings[].subject |
String |
true |
|
identityAudienceMappings[].active |
Boolean |
true |
|
identityAudienceMappings[].createdBy |
String |
true |
|
identityAudienceMappings[].createdAt |
Object |
true |
|
identityAudienceMappings[].deletedAt |
Object |
true |
|
identityAudienceMappings[].deletedBy |
String |
true |
|
identityAudienceMappings[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
tenantId |
String |
true |
Deprecated.. |
name |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities/580314ac-9eee-4030-9a11-fa279563ce38' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 710
{
"id" : "580314ac-9eee-4030-9a11-fa279563ce38",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "John",
"lastName" : "Doe",
"email" : "john.doe@acme.com",
"identityMappings" : [ {
"id" : "c76b5c84-6b58-4996-8727-bacd2842403b",
"auth0UserId" : "auth0-opaque-userId-3",
"identityProviderId" : "e29db543-4de8-4ff2-835a-9eda0878e4a4",
"userIdentityId" : "580314ac-9eee-4030-9a11-fa279563ce38"
} ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 585154000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "John Doe",
"type" : "UserIdentity"
}
Get User Identity By Mapping
GET /user-identities/mapping/{auth0UserId}/{identityProviderId}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
auth0UserId |
String |
false |
|
identityProviderId |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
||
identityMappings |
Array[Object] |
true |
|
identityMappings[].id |
String |
true |
|
identityMappings[].auth0UserId |
String |
true |
|
identityMappings[].identityProviderId |
String |
true |
|
identityMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings |
Array[Object] |
true |
|
identityAudienceMappings[].id |
String |
true |
|
identityAudienceMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings[].oidcAudienceId |
String |
true |
|
identityAudienceMappings[].subject |
String |
true |
|
identityAudienceMappings[].active |
Boolean |
true |
|
identityAudienceMappings[].createdBy |
String |
true |
|
identityAudienceMappings[].createdAt |
Object |
true |
|
identityAudienceMappings[].deletedAt |
Object |
true |
|
identityAudienceMappings[].deletedBy |
String |
true |
|
identityAudienceMappings[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
tenantId |
String |
true |
Deprecated.. |
name |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities/mapping/auth0-opaque-userId-3/e29db543-4de8-4ff2-835a-9eda0878e4a4' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 710
{
"id" : "580314ac-9eee-4030-9a11-fa279563ce38",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "John",
"lastName" : "Doe",
"email" : "john.doe@acme.com",
"identityMappings" : [ {
"id" : "c76b5c84-6b58-4996-8727-bacd2842403b",
"auth0UserId" : "auth0-opaque-userId-3",
"identityProviderId" : "e29db543-4de8-4ff2-835a-9eda0878e4a4",
"userIdentityId" : "580314ac-9eee-4030-9a11-fa279563ce38"
} ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 585154000,
"epochSecond" : 1743107740
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "John Doe",
"type" : "UserIdentity"
}
Create Identity
POST /user-identities
Request fields
Path | Type | Optional | Description |
---|---|---|---|
organizationId |
String |
true |
|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
||
identityMappings |
Array[Object] |
true |
|
identityMappings[].id |
String |
true |
|
identityMappings[].auth0UserId |
String |
true |
|
identityMappings[].identityProviderId |
String |
true |
|
identityMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings |
Array[Object] |
true |
|
identityAudienceMappings[].id |
String |
true |
|
identityAudienceMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings[].oidcAudienceId |
String |
true |
|
identityAudienceMappings[].subject |
String |
true |
|
identityAudienceMappings[].active |
Boolean |
true |
|
identityAudienceMappings[].createdBy |
String |
true |
|
identityAudienceMappings[].createdAt |
Object |
true |
|
identityAudienceMappings[].deletedAt |
Object |
true |
|
identityAudienceMappings[].deletedBy |
String |
true |
|
identityAudienceMappings[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
tenantId |
String |
true |
Deprecated.. |
name |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "Jane",
"lastName" : "Doe",
"email" : "jane.doe@acme.com"
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 479
{
"id" : "a01d4059-2fc8-4dcb-a07f-177581008258",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "Jane",
"lastName" : "Doe",
"email" : "jane.doe@acme.com",
"identityMappings" : [ ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 606009000,
"epochSecond" : 1743107791
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Jane Doe",
"type" : "UserIdentity"
}
Update
PUT /user-identities/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
||
identityMappings |
Array[Object] |
true |
|
identityMappings[].id |
String |
true |
|
identityMappings[].auth0UserId |
String |
true |
|
identityMappings[].identityProviderId |
String |
true |
|
identityMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings |
Array[Object] |
true |
|
identityAudienceMappings[].id |
String |
true |
|
identityAudienceMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings[].oidcAudienceId |
String |
true |
|
identityAudienceMappings[].subject |
String |
true |
|
identityAudienceMappings[].active |
Boolean |
true |
|
identityAudienceMappings[].createdBy |
String |
true |
|
identityAudienceMappings[].createdAt |
Object |
true |
|
identityAudienceMappings[].deletedAt |
Object |
true |
|
identityAudienceMappings[].deletedBy |
String |
true |
|
identityAudienceMappings[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
tenantId |
String |
true |
Deprecated.. |
name |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities/429180b1-d629-4508-a32e-788502428095' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"firstName" : "Bobby",
"lastName" : "White",
"email" : "bobby.white@acme.com"
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 721
{
"id" : "429180b1-d629-4508-a32e-788502428095",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "Bobby",
"lastName" : "White",
"email" : "bobby.white@acme.com",
"identityMappings" : [ {
"id" : "402720ff-3c7e-48fd-bb9b-378a76b4217e",
"auth0UserId" : "auth0-opaque-userId-292",
"identityProviderId" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"userIdentityId" : "429180b1-d629-4508-a32e-788502428095"
} ],
"identityAudienceMappings" : [ ],
"active" : true,
"createdAt" : {
"nano" : 173466000,
"epochSecond" : 1743107791
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "Bobby White",
"type" : "UserIdentity"
}
Activate Or Deactivate User Identity
PUT /user-identities/{id}/{action:activate|deactivate}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
|
action |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
firstName |
String |
true |
|
lastName |
String |
true |
|
String |
true |
||
identityMappings |
Array[Object] |
true |
|
identityMappings[].id |
String |
true |
|
identityMappings[].auth0UserId |
String |
true |
|
identityMappings[].identityProviderId |
String |
true |
|
identityMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings |
Array[Object] |
true |
|
identityAudienceMappings[].id |
String |
true |
|
identityAudienceMappings[].userIdentityId |
String |
true |
|
identityAudienceMappings[].oidcAudienceId |
String |
true |
|
identityAudienceMappings[].subject |
String |
true |
|
identityAudienceMappings[].active |
Boolean |
true |
|
identityAudienceMappings[].createdBy |
String |
true |
|
identityAudienceMappings[].createdAt |
Object |
true |
|
identityAudienceMappings[].deletedAt |
Object |
true |
|
identityAudienceMappings[].deletedBy |
String |
true |
|
identityAudienceMappings[].deleted |
Boolean |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
deletedAt |
Object |
true |
|
tenantId |
String |
true |
Deprecated.. |
name |
String |
true |
|
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities/643c48d8-4901-4742-bd37-7116415fe74e/deactivate' -i -X PUT
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 719
{
"id" : "643c48d8-4901-4742-bd37-7116415fe74e",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"firstName" : "First",
"lastName" : "Last",
"email" : "random-293@acme.com",
"identityMappings" : [ {
"id" : "abb46443-2307-4655-af0b-b99a1682a1b5",
"auth0UserId" : "auth0-opaque-userId-294",
"identityProviderId" : "a6756938-01d5-4dcc-a192-d0cd63f55eb3",
"userIdentityId" : "643c48d8-4901-4742-bd37-7116415fe74e"
} ],
"identityAudienceMappings" : [ ],
"active" : false,
"createdAt" : {
"nano" : 231335000,
"epochSecond" : 1743107791
},
"deletedAt" : null,
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "First Last",
"type" : "UserIdentity"
}
Reset User Identity Mfa Settings
PUT /user-identities/{id}/reset-mfa
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
No response body.
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities/d2fcafce-b290-4cee-94b6-7a66b26e33ae/reset-mfa' -i -X PUT
Example response
HTTP/1.1 200 OK
Map Identity
POST /user-identities/{id}/mapping
Authorization
This endpoint requires:
-
create-identity-mapping
action on thisuser-identity
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
auth0UserId |
String |
true |
|
identityProviderId |
String |
true |
Response fields
No response body.
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/user-identities/a77f3176-8a87-428e-b8ad-8ba820e13221/mapping' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"auth0UserId" : "new-auth0-userId:7e8f51c7-4b7e-44f7-9079-cc10bdbef291",
"identityProviderId" : "e29db543-4de8-4ff2-835a-9eda0878e4a4"
}'
Example response
HTTP/1.1 200 OK
API Account Identity
Find Api Account Identities
GET /api-account-identities
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
tenantId |
Object |
true |
Deprecated.. |
organizationId |
Object |
true |
|
name |
String |
true |
|
contactEmail |
String |
true |
|
active |
Boolean |
true |
|
includeDeleted |
Boolean |
true |
Default value: 'false'. |
provider |
String |
true |
Must be one of [Auth0, Cognito]. |
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ClientId |
String |
true |
|
awsCognitoClientId |
String |
true |
|
authenticationUrl |
String |
true |
|
name |
String |
true |
|
contactEmail |
String |
true |
|
description |
String |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
String |
true |
||
tenantId |
String |
true |
Deprecated.. |
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/api-account-identities' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 2037
[ {
"id" : "05ba77b6-846d-463c-a6e2-3a289cbea84e",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : null,
"awsCognitoClientId" : "013fda95-9355-4e91-a910-47a1a35bb5fd|mbesdact",
"authenticationUrl" : "https://netfoundry-test-xdckot.auth.us-east-1.amazoncognito.com/oauth2/token",
"name" : "HR Bridge Service",
"contactEmail" : "hr.director@acme.com",
"description" : "description goes here",
"active" : true,
"createdAt" : {
"nano" : 357628000,
"epochSecond" : 1743107746
},
"updatedAt" : null,
"deletedAt" : null,
"email" : "hr.director@acme.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
}, {
"id" : "06f4936c-b2f3-421b-9b3d-bc6751af8f3b",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : null,
"awsCognitoClientId" : "41eb34ad-d7f2-40db-afeb-831646431f8f|anhopcmx",
"authenticationUrl" : "https://netfoundry-test-mgsnym.auth.us-east-1.amazoncognito.com/oauth2/token",
"name" : "Testing Limits",
"contactEmail" : "a@acme.com",
"description" : "description",
"active" : true,
"createdAt" : {
"nano" : 6186000,
"epochSecond" : 1743107749
},
"updatedAt" : null,
"deletedAt" : null,
"email" : "a@acme.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
}, {
"id" : "0b607f87-80b7-49d1-a545-d15fdc319aff",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : null,
"awsCognitoClientId" : "c41f7133-b19e-4f17-a6c8-da1ba84cd9b0|brfjiqae",
"authenticationUrl" : "https://netfoundry-test-usesps.auth.us-east-1.amazoncognito.com/oauth2/token",
"name" : "Testing Limits",
"contactEmail" : "a@acme.com",
"description" : "description",
"active" : true,
"createdAt" : {
"nano" : 486535000,
"epochSecond" : 1743107779
},
"updatedAt" : null,
"deletedAt" : null,
"email" : "a@acme.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
} ]
Get Api Account Identity
GET /api-account-identities/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ClientId |
String |
true |
|
awsCognitoClientId |
String |
true |
|
authenticationUrl |
String |
true |
|
name |
String |
true |
|
contactEmail |
String |
true |
|
description |
String |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
String |
true |
||
tenantId |
String |
true |
Deprecated.. |
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/api-account-identities/e59f4f16-bb0f-413a-b37c-b84982bf3787' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 718
{
"id" : "e59f4f16-bb0f-413a-b37c-b84982bf3787",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : "5d4e73dc-61a7-4733-86b6-92ea54940153",
"awsCognitoClientId" : null,
"authenticationUrl" : "http://127.0.0.1:1234/IdP/OAuth2/login",
"name" : "api-account",
"contactEmail" : "no-reply@acme.com",
"description" : "This is an ACME non-interactive API client.",
"active" : true,
"createdAt" : {
"nano" : 618786000,
"epochSecond" : 1743107740
},
"updatedAt" : {
"nano" : 167285000,
"epochSecond" : 1743107742
},
"deletedAt" : null,
"email" : "no-reply@acme.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
}
Get Api Account Identity By Mapping
GET /api-account-identities/mapping/{clientId}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
clientId |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ClientId |
String |
true |
|
awsCognitoClientId |
String |
true |
|
authenticationUrl |
String |
true |
|
name |
String |
true |
|
contactEmail |
String |
true |
|
description |
String |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
String |
true |
||
tenantId |
String |
true |
Deprecated.. |
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/api-account-identities/mapping/be6b0d2a-2e72-4bdd-9d49-27c9f794c3be' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 682
{
"id" : "1ef44e05-93fc-4315-932a-768eb3cd513b",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : "be6b0d2a-2e72-4bdd-9d49-27c9f794c3be",
"awsCognitoClientId" : null,
"authenticationUrl" : "http://127.0.0.1:1234/IdP/OAuth2/login",
"name" : "ACME Internal Service-29",
"contactEmail" : "service.admin-30@foo.com",
"description" : "updatable API Account description-31",
"active" : true,
"createdAt" : {
"nano" : 404181000,
"epochSecond" : 1743107780
},
"updatedAt" : null,
"deletedAt" : null,
"email" : "service.admin-30@foo.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
}
Create Api Account Identity
POST /api-account-identities
Request fields
Path | Type | Optional | Description |
---|---|---|---|
organizationId |
String |
true |
|
name |
String |
true |
|
contactEmail |
String |
true |
|
description |
String |
true |
|
grantDefaultRoles |
Boolean |
true |
|
provider |
String |
true |
Must be one of [Auth0, Cognito]. |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
apiAccountIdentity |
Object |
true |
|
apiAccountIdentity.id |
String |
true |
|
apiAccountIdentity.organizationId |
String |
true |
|
apiAccountIdentity.auth0ClientId |
String |
true |
|
apiAccountIdentity.awsCognitoClientId |
String |
true |
|
apiAccountIdentity.authenticationUrl |
String |
true |
|
apiAccountIdentity.name |
String |
true |
|
apiAccountIdentity.contactEmail |
String |
true |
|
apiAccountIdentity.description |
String |
true |
|
apiAccountIdentity.active |
Boolean |
true |
|
apiAccountIdentity.createdAt |
Object |
true |
|
apiAccountIdentity.updatedAt |
Object |
true |
|
apiAccountIdentity.deletedAt |
Object |
true |
|
apiAccountIdentity.email |
String |
true |
|
apiAccountIdentity.tenantId |
String |
true |
Deprecated.. |
apiAccountIdentity.type |
String |
true |
|
clientId |
String |
true |
|
password |
String |
true |
|
authenticationUrl |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/api-account-identities' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"name" : "HR Bridge Service",
"contactEmail" : "hr.director@acme.com",
"description" : "description goes here",
"grantDefaultRoles" : true,
"provider" : "Cognito"
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 940
{
"apiAccountIdentity" : {
"id" : "05ba77b6-846d-463c-a6e2-3a289cbea84e",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : null,
"awsCognitoClientId" : "013fda95-9355-4e91-a910-47a1a35bb5fd|mbesdact",
"authenticationUrl" : "https://netfoundry-test-xdckot.auth.us-east-1.amazoncognito.com/oauth2/token",
"name" : "HR Bridge Service",
"contactEmail" : "hr.director@acme.com",
"description" : "description goes here",
"active" : true,
"createdAt" : {
"nano" : 357628000,
"epochSecond" : 1743107746
},
"updatedAt" : null,
"deletedAt" : null,
"email" : "hr.director@acme.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
},
"clientId" : "mbesdact",
"password" : "uvvltlvwoftmmrnqctofeesn",
"authenticationUrl" : "https://netfoundry-test-xdckot.auth.us-east-1.amazoncognito.com/oauth2/token"
}
Update Identity Info
PUT /api-account-identities/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
contactEmail |
String |
true |
|
description |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ClientId |
String |
true |
|
awsCognitoClientId |
String |
true |
|
authenticationUrl |
String |
true |
|
name |
String |
true |
|
contactEmail |
String |
true |
|
description |
String |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
String |
true |
||
tenantId |
String |
true |
Deprecated.. |
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/api-account-identities/27d1867c-9185-47eb-a992-ccc7525166fe' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"name" : "Robot",
"contactEmail" : "robot@acme.com",
"description" : "description here."
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 680
{
"id" : "27d1867c-9185-47eb-a992-ccc7525166fe",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : "e9f52a0f-f609-452b-a096-40b17a7fbc9d",
"awsCognitoClientId" : null,
"authenticationUrl" : "http://127.0.0.1:1234/IdP/OAuth2/login",
"name" : "Robot",
"contactEmail" : "robot@acme.com",
"description" : "description here.",
"active" : true,
"createdAt" : {
"nano" : 671862000,
"epochSecond" : 1743107740
},
"updatedAt" : {
"nano" : 507706000,
"epochSecond" : 1743107741
},
"deletedAt" : null,
"email" : "robot@acme.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
}
Activate Or Deactivate Api Account Identity
PUT /api-account-identities/{id}/{action:activate|deactivate}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
|
action |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
auth0ClientId |
String |
true |
|
awsCognitoClientId |
String |
true |
|
authenticationUrl |
String |
true |
|
name |
String |
true |
|
contactEmail |
String |
true |
|
description |
String |
true |
|
active |
Boolean |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedAt |
Object |
true |
|
String |
true |
||
tenantId |
String |
true |
Deprecated.. |
type |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/api-account-identities/81794d33-05d6-40e9-838f-e814649fe509/deactivate' -i -X PUT
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 739
{
"id" : "81794d33-05d6-40e9-838f-e814649fe509",
"organizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"auth0ClientId" : "37ea2540-cc34-48ff-bb6f-447ed9bbef6c",
"awsCognitoClientId" : null,
"authenticationUrl" : "http://127.0.0.1:1234/IdP/OAuth2/login",
"name" : "ACME Internal Service-23",
"contactEmail" : "service.admin-24@foo.com",
"description" : "updatable API Account description-25",
"active" : false,
"createdAt" : {
"nano" : 212893000,
"epochSecond" : 1743107780
},
"updatedAt" : {
"nano" : 233551000,
"epochSecond" : 1743107780
},
"deletedAt" : null,
"email" : "service.admin-24@foo.com",
"tenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"type" : "ApiAccountIdentity"
}
Invitation
Find Invitations
GET /invitations
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
fromIdentityId |
Object |
true |
|
toTenantId |
Object |
true |
Deprecated.. |
toOrganizationId |
Object |
true |
|
invitedEmailAddress |
String |
true |
|
targetIdentityId |
Object |
true |
|
states |
Object |
true |
Must be one of [Open, Accepted, Declined, Expired, Revoked]. |
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
fromIdentityId |
String |
true |
|
toOrganizationId |
String |
true |
|
invitedEmailAddress |
String |
true |
|
expiration |
Object |
true |
|
targetUserIdentityId |
String |
true |
|
accepted |
Boolean |
true |
|
revokedAt |
Object |
true |
|
responseReceivedAt |
Object |
true |
|
toTenantId |
String |
true |
Deprecated.. |
state |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 527
[ {
"id" : "5b27d5fc-b470-4d5f-ba28-95aa7fe8cf28",
"fromIdentityId" : "22c6c34f-4c6a-488b-9cac-bef42d574592",
"toOrganizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"invitedEmailAddress" : "new.employee@acme.com",
"expiration" : {
"nano" : 867207000,
"epochSecond" : 1743712585
},
"targetUserIdentityId" : "3ab6b938-ada2-4bee-aa74-484fb1320d3d",
"accepted" : null,
"revokedAt" : null,
"responseReceivedAt" : null,
"toTenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"state" : "Open"
} ]
Get Invitation By Id
GET /invitations/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
fromIdentityId |
String |
true |
|
toOrganizationId |
String |
true |
|
invitedEmailAddress |
String |
true |
|
expiration |
Object |
true |
|
targetUserIdentityId |
String |
true |
|
accepted |
Boolean |
true |
|
revokedAt |
Object |
true |
|
responseReceivedAt |
Object |
true |
|
toTenantId |
String |
true |
Deprecated.. |
state |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations/01dfdfee-0064-4eff-886e-bffe965155f0' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 526
{
"id" : "01dfdfee-0064-4eff-886e-bffe965155f0",
"fromIdentityId" : "580314ac-9eee-4030-9a11-fa279563ce38",
"toOrganizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"invitedEmailAddress" : "new.employee-219@acme.com",
"expiration" : {
"nano" : 82811000,
"epochSecond" : 1743712586
},
"targetUserIdentityId" : "333d4863-25fe-4361-94ea-798386723ac1",
"accepted" : null,
"revokedAt" : null,
"responseReceivedAt" : null,
"toTenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"state" : "Open"
}
Create Invitation
POST /invitations
Authorization
This endpoint requires:
-
create
action on thisinvitation
resource. -
read
action on theuser-identity
resource identified by thetargetUserIdentityId
property.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
toOrganizationId |
String |
true |
|
invitedEmailAddress |
String |
true |
|
invitationUrl |
String |
true |
|
targetUserIdentityId |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
fromIdentityId |
String |
true |
|
toOrganizationId |
String |
true |
|
invitedEmailAddress |
String |
true |
|
expiration |
Object |
true |
|
targetUserIdentityId |
String |
true |
|
accepted |
Boolean |
true |
|
revokedAt |
Object |
true |
|
responseReceivedAt |
Object |
true |
|
toTenantId |
String |
true |
Deprecated.. |
state |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"toOrganizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"invitedEmailAddress" : "new.employee@acme.com",
"invitationUrl" : "http://acme.console.netfoundry.io/invitation",
"targetUserIdentityId" : "3ab6b938-ada2-4bee-aa74-484fb1320d3d"
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 523
{
"id" : "5b27d5fc-b470-4d5f-ba28-95aa7fe8cf28",
"fromIdentityId" : "22c6c34f-4c6a-488b-9cac-bef42d574592",
"toOrganizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"invitedEmailAddress" : "new.employee@acme.com",
"expiration" : {
"nano" : 867207000,
"epochSecond" : 1743712585
},
"targetUserIdentityId" : "3ab6b938-ada2-4bee-aa74-484fb1320d3d",
"accepted" : null,
"revokedAt" : null,
"responseReceivedAt" : null,
"toTenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"state" : "Open"
}
Respond To Invitation
PUT /invitations/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}/{action:accept|decline}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
|
action |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
fromIdentityId |
String |
true |
|
toOrganizationId |
String |
true |
|
invitedEmailAddress |
String |
true |
|
expiration |
Object |
true |
|
targetUserIdentityId |
String |
true |
|
accepted |
Boolean |
true |
|
revokedAt |
Object |
true |
|
responseReceivedAt |
Object |
true |
|
toTenantId |
String |
true |
Deprecated.. |
state |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations/67d349cc-18b4-488a-82e8-99d2a64561f7/decline' -i -X PUT
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 586
{
"id" : "67d349cc-18b4-488a-82e8-99d2a64561f7",
"fromIdentityId" : "580314ac-9eee-4030-9a11-fa279563ce38",
"toOrganizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"invitedEmailAddress" : "new.employee-216@acme.com",
"expiration" : {
"nano" : 28530000,
"epochSecond" : 1743712586
},
"targetUserIdentityId" : "32dc9360-74aa-4a83-beb5-19c9434df533",
"accepted" : false,
"revokedAt" : null,
"responseReceivedAt" : {
"nano" : 41137000,
"epochSecond" : 1743107786
},
"toTenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"state" : "Declined"
}
Revoke Invitation
PUT /invitations/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}/revoke
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
fromIdentityId |
String |
true |
|
toOrganizationId |
String |
true |
|
invitedEmailAddress |
String |
true |
|
expiration |
Object |
true |
|
targetUserIdentityId |
String |
true |
|
accepted |
Boolean |
true |
|
revokedAt |
Object |
true |
|
responseReceivedAt |
Object |
true |
|
toTenantId |
String |
true |
Deprecated.. |
state |
String |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations/dbd0fb0d-7d5f-4f99-bb29-484615a89b16/revoke' -i -X PUT
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 642
{
"id" : "dbd0fb0d-7d5f-4f99-bb29-484615a89b16",
"fromIdentityId" : "580314ac-9eee-4030-9a11-fa279563ce38",
"toOrganizationId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"invitedEmailAddress" : "new.employee-222@acme.com",
"expiration" : {
"nano" : 126723000,
"epochSecond" : 1743712586
},
"targetUserIdentityId" : "d2616c71-caa8-479a-9d51-ef2f788909ef",
"accepted" : null,
"revokedAt" : {
"nano" : 136671000,
"epochSecond" : 1743107786
},
"responseReceivedAt" : {
"nano" : 136675000,
"epochSecond" : 1743107786
},
"toTenantId" : "6204c040-ec7e-4a26-b946-45fda41f104a",
"state" : "Revoked"
}
Support
Create Support Request
POST /nfconsole/support/requests
Authorization
Authorization not required for this request.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
String |
true |
||
selectedOrganizationId |
String |
true |
|
selectedNetworkId |
String |
true |
|
subject |
String |
true |
|
comment |
String |
true |
|
type |
String |
true |
Must be one of [problem, incident, question, task]. |
priority |
String |
true |
Must be one of [urgent, high, normal, low]. |
severity |
String |
true |
Must be one of [Severity1, Severity2, Severity3]. |
recentErrorMessages |
Array[String] |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/nfconsole/support/requests' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"name" : "Curious George",
"email" : "george@curious-client.com",
"selectedOrganizationId" : null,
"selectedNetworkId" : null,
"subject" : "Sales Contact Request",
"comment" : "This looks great! I'd like a sales rep to contact me.",
"type" : "question",
"priority" : "high",
"severity" : "Severity3",
"recentErrorMessages" : null
}'
Example response
HTTP/1.1 200 OK
Invitation Flow
Get Invitation By Key
GET /invitations/key/{key:\p{Alnum}{36}}
Authorization
Authorization not required for this request.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
key |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
fromIdentity |
Object |
true |
|
fromIdentity.name |
String |
true |
|
fromIdentity.email |
String |
true |
|
targetIdentity |
Object |
true |
|
targetIdentity.name |
String |
true |
|
targetIdentity.email |
String |
true |
|
invitedEmailAddress |
String |
true |
|
toOrganizationName |
String |
true |
|
toOrganizationLabel |
String |
true |
|
expiration |
Object |
true |
|
accepted |
Boolean |
true |
|
state |
String |
true |
Must be one of [Open, Accepted, Declined, Expired, Revoked]. |
toTenantName |
String |
true |
Deprecated.. |
toTenantLabel |
String |
true |
Deprecated.. |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations/key/F3v5GgjX4g5G8FiT29wlY3ua2vIlPNuKSLTm' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 519
{
"fromIdentity" : {
"name" : "John Doe",
"email" : "john.doe@acme.com"
},
"targetIdentity" : {
"name" : "First Last",
"email" : "random-229@acme.com"
},
"invitedEmailAddress" : "new.employee-231@acme.com",
"toOrganizationName" : "ACME International, Inc.",
"toOrganizationLabel" : "ACME-0",
"expiration" : {
"nano" : 650575000,
"epochSecond" : 1743712586
},
"accepted" : null,
"state" : "Open",
"toTenantName" : "ACME International, Inc.",
"toTenantLabel" : "ACME-0"
}
Decline Invitation
PUT /invitations/key/{key:\p{Alnum}{36}}/decline
Authorization
Authorization not required for this request.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
key |
String |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
fromIdentity |
Object |
true |
|
fromIdentity.name |
String |
true |
|
fromIdentity.email |
String |
true |
|
targetIdentity |
Object |
true |
|
targetIdentity.name |
String |
true |
|
targetIdentity.email |
String |
true |
|
invitedEmailAddress |
String |
true |
|
toOrganizationName |
String |
true |
|
toOrganizationLabel |
String |
true |
|
expiration |
Object |
true |
|
accepted |
Boolean |
true |
|
state |
String |
true |
Must be one of [Open, Accepted, Declined, Expired, Revoked]. |
toTenantName |
String |
true |
Deprecated.. |
toTenantLabel |
String |
true |
Deprecated.. |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations/key/iOuc461wnGKoH3ufvPjFUox7DekOaU3TlWTK/decline' -i -X PUT
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 524
{
"fromIdentity" : {
"name" : "John Doe",
"email" : "john.doe@acme.com"
},
"targetIdentity" : {
"name" : "First Last",
"email" : "random-226@acme.com"
},
"invitedEmailAddress" : "new.employee-228@acme.com",
"toOrganizationName" : "ACME International, Inc.",
"toOrganizationLabel" : "ACME-0",
"expiration" : {
"nano" : 497994000,
"epochSecond" : 1743712586
},
"accepted" : false,
"state" : "Declined",
"toTenantName" : "ACME International, Inc.",
"toTenantLabel" : "ACME-0"
}
Initiate Accept Invitation
POST /invitations/key/{key:\p{Alnum}{36}}/accept-initiate
Authorization
Authorization not required for this request.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
key |
String |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
intermediateReturnUrl |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
nfToken |
String |
true |
|
auth0ConnectionIds |
Array[String] |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/invitations/key/ApjAtt71TP7JT0UgR9uzjc7NYwTsvKRUzWkl/accept-initiate' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"intermediateReturnUrl" : "http://console.nfadmin.netfoundry.io/invitation"
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 981
{
"nfToken" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3NDMxMDc3ODYsImV4cCI6MTc0MzEwODY4NiwiaXNzIjoiaHR0cDovL2xvY2FsaG9zdDo4MDgwL2lkZW50aXR5L3YxIiwiYXVkIjoiaHR0cHM6Ly9uZXRmb3VuZHJ5LXNhbmRib3guYXV0aDAuY29tLyIsImZsb3ciOiJpbnZpdGF0aW9uIiwiaW52aXRhdGlvbklkIjoiZmJhZmRiZTktZmQ3NS00MGY3LTk2MjYtMzc3ZGI3YjQ5MmJkIiwidGVuYW50TGFiZWwiOiJBQ01FLTAiLCJhdXRoMENvbm5lY3Rpb25JZHMiOlsiYXV0aDAtb3BhcXVlLWNvbm5lY3Rpb25JZC0yIiwiYXV0aDAtb3BhcXVlLWNvbm5lY3Rpb25JZC0xIl0sInJlZGlyZWN0VXJsIjoiaHR0cDovL2NvbnNvbGUubmZhZG1pbi5uZXRmb3VuZHJ5LmlvL2ludml0YXRpb24ifQ.oZTdnTO-7gWyQXl5vN-hHHM8OQcBUL8c_Twk-rGzXB_wziUvXoWUOrkqn4IvJRrXaJG3zVvo-y2dzcMX1C2hlRIM5Z1lHEyVSknJeNU6Q33rY8Lb8cZo_3yygk0c2NF26R_N_cwZrOIMS86gYWhy59x8ONakmKHvbBwjnpxMA5R3eMnvwkZWMtHMk43cbyZ-WA3rgCK0M0ZKESYLOixqPkSosqTatueaa7BSzSIWuYzqGJC-OeNRV_7Vxspm3y51eRqsbQxSD8G3TeBoIs1IPj_Vf3Y2BShGKjqOqD9IkBimV_ww-xVOU3BVSWDliwV8ZjdZRIXlDfmrkwTmTPN9rA",
"auth0ConnectionIds" : [ "auth0-opaque-connectionId-2", "auth0-opaque-connectionId-1" ]
}
Login Flow
Initiate Interactive Authorization
POST /organizations/authorize-initiate
Authorization
Authorization not required for this request.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
label |
String |
true |
|
intermediateReturnUrl |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
nfToken |
String |
true |
|
auth0ConnectionIds |
Array[String] |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organizations/authorize-initiate' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"label" : "ACME-0",
"intermediateReturnUrl" : "http://console.nfadmin.netfoundry.io/invitation"
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 902
{
"nfToken" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3NDMxMDc3ODYsImV4cCI6MTc0MzEwODY4NiwiaXNzIjoiaHR0cDovL2xvY2FsaG9zdDo4MDgwL2lkZW50aXR5L3YxIiwiYXVkIjoiaHR0cHM6Ly9uZXRmb3VuZHJ5LXNhbmRib3guYXV0aDAuY29tLyIsImZsb3ciOiJsb2dpbiIsInRlbmFudExhYmVsIjoiQUNNRS0wIiwiYXV0aDBDb25uZWN0aW9uSWRzIjpbImF1dGgwLW9wYXF1ZS1jb25uZWN0aW9uSWQtMiIsImF1dGgwLW9wYXF1ZS1jb25uZWN0aW9uSWQtMSJdLCJyZWRpcmVjdFVybCI6Imh0dHA6Ly9jb25zb2xlLm5mYWRtaW4ubmV0Zm91bmRyeS5pby9pbnZpdGF0aW9uIn0.TFQTBllT2Z96tc2AFF_0QaZdP2qyymk3HEnbhZfvNM7kxPqv-lnX_QEL_Y39X3lPHi5KZtdg9rnoj8TThXFowv51n4UwCY0mx9NoWzq0CMFm6wjBl7iBxd7gqe8HgxtrQA7wH8_oIimTa8n-qKAhUI-bhvEWspbrKGn9tCg8RxTbODUgjk0B745-0TFcecHLZH6FD99Bbi7Gdqh8wgXhoHiliZ92arxhzKo3x_36Uf7vEg3eJokAMDAEI7GwkuRA6E_sfiWKH6_L4XDBdop3FhqlR9dyMKs9f5ljl7fptbwwvVmBJReaj1dxcaQiMpCDVsIY0iXN1OP4kh9WWvkgbg",
"auth0ConnectionIds" : [ "auth0-opaque-connectionId-2", "auth0-opaque-connectionId-1" ]
}
Identity Preference Flow
Find Identity Preferences
GET /identity-preferences
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-preferences' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1283
[ {
"id" : "3c50bbba-a3b9-4e22-b002-cbe299b483be",
"userIdentityId" : "3b1a6df2-7bc2-441d-991a-46ad9206912c",
"preferences" : {
"first" : "my first preference."
},
"createdBy" : "3b1a6df2-7bc2-441d-991a-46ad9206912c",
"createdAt" : {
"nano" : 795666000,
"epochSecond" : 1743107782
},
"updatedAt" : {
"nano" : 795666000,
"epochSecond" : 1743107782
},
"deletedBy" : null,
"deletedAt" : null
}, {
"id" : "4e446154-a07f-404d-afdc-bb013a188f89",
"userIdentityId" : "bf1680c5-86ac-4929-a454-8e560f3d17ed",
"preferences" : {
"first" : "my first preference."
},
"createdBy" : "bf1680c5-86ac-4929-a454-8e560f3d17ed",
"createdAt" : {
"nano" : 843712000,
"epochSecond" : 1743107782
},
"updatedAt" : {
"nano" : 843712000,
"epochSecond" : 1743107782
},
"deletedBy" : null,
"deletedAt" : null
}, {
"id" : "877811af-bf96-4bbf-be95-26690a9833cc",
"userIdentityId" : "d06a100a-5396-4602-81fb-d030d2fac3a0",
"preferences" : {
"hello" : "world"
},
"createdBy" : "d06a100a-5396-4602-81fb-d030d2fac3a0",
"createdAt" : {
"nano" : 889090000,
"epochSecond" : 1743107782
},
"updatedAt" : {
"nano" : 889090000,
"epochSecond" : 1743107782
},
"deletedBy" : null,
"deletedAt" : null
} ]
Get Identity Preference
GET /identity-preferences/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-preferences/6673686b-1458-4765-9bf7-72938ddf520c' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 415
{
"id" : "6673686b-1458-4765-9bf7-72938ddf520c",
"userIdentityId" : "3078fe7e-5f89-4070-a4fb-d821e7cd9b37",
"preferences" : {
"hello" : "world"
},
"createdBy" : "3078fe7e-5f89-4070-a4fb-d821e7cd9b37",
"createdAt" : {
"nano" : 952416000,
"epochSecond" : 1743107783
},
"updatedAt" : {
"nano" : 952416000,
"epochSecond" : 1743107783
},
"deletedBy" : null,
"deletedAt" : null
}
Upsert Identity Preference
POST /identity-preferences
Authorization
This endpoint requires no specific permission, only an authenticated client.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
userIdentityId |
String |
true |
|
preferences |
Object |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-preferences' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"userIdentityId" : null,
"preferences" : {
"first" : "my first preference."
}
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 430
{
"id" : "bd798885-1590-466c-a6b1-3947a971beb6",
"userIdentityId" : "46f53701-9462-4688-8848-25640d835a5c",
"preferences" : {
"first" : "my first preference."
},
"createdBy" : "46f53701-9462-4688-8848-25640d835a5c",
"createdAt" : {
"nano" : 244496000,
"epochSecond" : 1743107783
},
"updatedAt" : {
"nano" : 244496000,
"epochSecond" : 1743107783
},
"deletedBy" : null,
"deletedAt" : null
}
Upsert Identity Preference By Id
PUT /identity-preferences/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Authorization
This endpoint requires:
-
create
action on thisidentity-preference
resource. -
update
action on thisidentity-preference
resource.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
userIdentityId |
String |
true |
|
preferences |
Object |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-preferences/b22c97cf-2533-4dd9-bc7d-7e69740deb2c' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"preferences" : {
"updated" : "my second preference."
}
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 433
{
"id" : "b22c97cf-2533-4dd9-bc7d-7e69740deb2c",
"userIdentityId" : "85490131-b48b-404c-ac8f-50ccaa7d9f3f",
"preferences" : {
"updated" : "my second preference."
},
"createdBy" : "85490131-b48b-404c-ac8f-50ccaa7d9f3f",
"createdAt" : {
"nano" : 897105000,
"epochSecond" : 1743107784
},
"updatedAt" : {
"nano" : 909087000,
"epochSecond" : 1743107784
},
"deletedBy" : null,
"deletedAt" : null
}
Delete Identity Preference By Id
DELETE /identity-preferences/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
userIdentityId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/identity-preferences/96b188f2-6622-43be-b9ac-78136b3e25bf' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 505
{
"id" : "96b188f2-6622-43be-b9ac-78136b3e25bf",
"userIdentityId" : "fcb4d6b4-e023-4b2d-8ca6-918c63cbf32c",
"preferences" : {
"hello" : "world"
},
"createdBy" : "fcb4d6b4-e023-4b2d-8ca6-918c63cbf32c",
"createdAt" : {
"nano" : 533558000,
"epochSecond" : 1743107783
},
"updatedAt" : {
"nano" : 547354000,
"epochSecond" : 1743107783
},
"deletedBy" : "5274a93b-7a13-40cd-ace8-b63def97ab8f",
"deletedAt" : {
"nano" : 546000000,
"epochSecond" : 1743107783
}
}
Organization Preference Flow
Find Organization Preferences
GET /organization-preferences
Response fields
Standard paging response where content
field is list of following objects:
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-preferences' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1264
[ {
"id" : "2c8c5b48-c62a-4fe2-afeb-bd7e7ea3fe8a",
"organizationId" : "1e946c6e-ac91-46d2-b4d8-ff01c8d02a9d",
"preferences" : {
"hello" : "world"
},
"createdBy" : "6ab2e46e-f928-4ece-bb15-6fea7dad70a1",
"createdAt" : {
"nano" : 4499000,
"epochSecond" : 1743107790
},
"updatedAt" : {
"nano" : 4499000,
"epochSecond" : 1743107790
},
"deletedBy" : null,
"deletedAt" : null
}, {
"id" : "879df7e0-a43d-4100-aaa5-4c03d324d03f",
"organizationId" : "642662bc-c515-44e5-8ef4-cbeaabfd3afd",
"preferences" : {
"first" : "my first preference."
},
"createdBy" : "c3351eb4-9621-4706-8b03-72ee111a195a",
"createdAt" : {
"nano" : 935685000,
"epochSecond" : 1743107789
},
"updatedAt" : {
"nano" : 935685000,
"epochSecond" : 1743107789
},
"deletedBy" : null,
"deletedAt" : null
}, {
"id" : "8ec0ae38-3d05-4308-93b0-e5c94306ffbc",
"organizationId" : "f791c62a-c2b8-4fc0-855c-a1f740fba0f5",
"preferences" : {
"hello" : "world"
},
"createdBy" : "d4d45827-6631-4ebc-a0c0-12023b820047",
"createdAt" : {
"nano" : 878430000,
"epochSecond" : 1743107789
},
"updatedAt" : {
"nano" : 878430000,
"epochSecond" : 1743107789
},
"deletedBy" : null,
"deletedAt" : null
} ]
Get Organization Preference
GET /organization-preferences/{id:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-preferences/2c8c5b48-c62a-4fe2-afeb-bd7e7ea3fe8a' -i -X GET
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 411
{
"id" : "2c8c5b48-c62a-4fe2-afeb-bd7e7ea3fe8a",
"organizationId" : "1e946c6e-ac91-46d2-b4d8-ff01c8d02a9d",
"preferences" : {
"hello" : "world"
},
"createdBy" : "6ab2e46e-f928-4ece-bb15-6fea7dad70a1",
"createdAt" : {
"nano" : 4499000,
"epochSecond" : 1743107790
},
"updatedAt" : {
"nano" : 4499000,
"epochSecond" : 1743107790
},
"deletedBy" : null,
"deletedAt" : null
}
Create Organization Preference
POST /organization-preferences
Request fields
Path | Type | Optional | Description |
---|---|---|---|
organizationId |
String |
true |
|
preferences |
Object |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-preferences' -i -X POST \
-H 'Content-Type: application/json' \
-d '{
"organizationId" : "642662bc-c515-44e5-8ef4-cbeaabfd3afd",
"preferences" : {
"first" : "my first preference."
}
}'
Example response
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 430
{
"id" : "879df7e0-a43d-4100-aaa5-4c03d324d03f",
"organizationId" : "642662bc-c515-44e5-8ef4-cbeaabfd3afd",
"preferences" : {
"first" : "my first preference."
},
"createdBy" : "c3351eb4-9621-4706-8b03-72ee111a195a",
"createdAt" : {
"nano" : 935685000,
"epochSecond" : 1743107789
},
"updatedAt" : {
"nano" : 935685000,
"epochSecond" : 1743107789
},
"deletedBy" : null,
"deletedAt" : null
}
Update Organization Preference
PUT /organization-preferences/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Request fields
Path | Type | Optional | Description |
---|---|---|---|
preferences |
Object |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-preferences/687163d1-74da-4b8e-9c1c-227524502588' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"preferences" : {
"updated" : "my second preference."
}
}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 433
{
"id" : "687163d1-74da-4b8e-9c1c-227524502588",
"organizationId" : "90583176-9278-4951-894b-e3c69065002c",
"preferences" : {
"updated" : "my second preference."
},
"createdBy" : "5676ee20-ec2b-4d38-9b47-a701c244eb41",
"createdAt" : {
"nano" : 112455000,
"epochSecond" : 1743107790
},
"updatedAt" : {
"nano" : 125909000,
"epochSecond" : 1743107790
},
"deletedBy" : null,
"deletedAt" : null
}
Delete Organization Preference
DELETE /organization-preferences/{id}
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
organizationId |
String |
true |
|
preferences |
Object |
true |
|
createdBy |
String |
true |
|
createdAt |
Object |
true |
|
updatedAt |
Object |
true |
|
deletedBy |
String |
true |
|
deletedAt |
Object |
true |
Example request
$ curl 'https://gateway.netFoundry.io/identity/v1/organization-preferences/66058752-c5e6-4cff-95b6-d58df6140697' -i -X DELETE
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 505
{
"id" : "66058752-c5e6-4cff-95b6-d58df6140697",
"organizationId" : "b276a8e6-9c56-433e-8eec-7e584441a75c",
"preferences" : {
"hello" : "world"
},
"createdBy" : "296ea5a1-c115-455d-9333-2c24f260c00d",
"createdAt" : {
"nano" : 964247000,
"epochSecond" : 1743107789
},
"updatedAt" : {
"nano" : 973261000,
"epochSecond" : 1743107789
},
"deletedBy" : "9e3f873a-66ea-4562-b319-24244a6e6bfb",
"deletedAt" : {
"nano" : 972000000,
"epochSecond" : 1743107789
}
}