curl --request GET \
--url https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"meta": {
"nextCursor": "F3UdkoSbpBNrjwP93AX2HQ",
"totalItems": 1
},
"items": [
{
"id": "123#jessica.jones@addresss.com",
"identityId": "AHF5GF12",
"username": "jessia-jones",
"displayName": "Jessia Jones",
"email": "jessica.jones@address.com",
"roles": [
"Member",
"Admin"
],
"status": "active",
"employeeStatus": "active",
"employeeType": "collaborator",
"employeeManagementType": "system",
"twoFa": true,
"uniqueKey": "unique_key",
"lastActivity": "Mon Jan 24 2022 13:20:31 GMT+0900 (Japan Standard Time)",
"isInactive": false,
"licenses": [
"Basic",
"Basic Plus",
"Pro",
"Business"
],
"workspace": {
"id": 1,
"organizationId": 1,
"serviceId": 1,
"authenType": "api",
"workspaceName": "iggre",
"aggreKey": "iggre",
"lastExecutionStatus": "processing",
"lastExecutionTime": "2020-11-11 10:00:00",
"lastUsedAt": "2020-11-11 10:00:00",
"lastExecutionResultId": "SUCCESS",
"lastExecutionResultCode": 200,
"lastExecutionResultMessage": "NOT_FOUND",
"provisioningCredentialEnabled": false,
"description": "Description of the workspace",
"showDescription": false,
"isCustomWorkspace": false,
"deviceAggregationStatus": "finished",
"service": {
"id": 1,
"name": "Google",
"uniqueName": "google",
"url": "https://google.com",
"isEmployeeMasterService": true,
"adminUrl": "https://admin.google.com/u/0/ac/home",
"userManagementUrl": "https://admin.google.com/u/0/ac/users",
"serviceTopUrl": "https://workspace.google.com/products/admin/",
"guidanceUrl": "https://notion.link/google",
"serviceAlternateUrls": [
"www.slides.google.com",
"www.docs.google.com",
"www.sheets.google.com"
],
"aggreTypes": [
{
"name": "aggregateAll",
"authenTypes": [
{
"name": "oauth",
"requiredAttributes": [
"username",
"password"
],
"optionalAttributes": [
"secretKey"
],
"permittedAttributes": [
"aggreKey"
],
"separatelyUpdatableAttributes": [
"groups"
],
"permissions": [
"read-write",
"read"
],
"variant": "enterprisePlan"
}
]
}
],
"canDeleteAccount": false,
"canDeactivateAccount": false,
"canAggregateSpend": false,
"canAggregateFiles": false,
"canManageFilePermissions": false,
"canOnlyAggregatePublicFiles": false,
"canAggregateDevices": false,
"canPerformMatching": true,
"canProvisionAccount": false,
"isCustomService": false,
"isIdentityProvider": false,
"serviceMeta": {
"id": 1,
"vendorName": "Example Vendor",
"vendorCountryOfOrigin": "Japan",
"termsOfUseUrl": "https://example.com",
"privacyPolicyUrl": "https://example.com",
"dataSecurityPolicyUrl": "https://example.com",
"certifications": [
{
"name": "Example",
"url": "https://example.com"
}
]
}
},
"workspaceMeta": {
"id": 1,
"workspaceId": 1,
"organizationId": 1,
"note": "Example note",
"businessImpactLevel": "low",
"dataStoreRegion": "ap-northeast-1",
"piiEnabled": false,
"pii": "Example note",
"confidentialInfo": "confidential",
"securityImpactLevel": "low",
"vendorName": "Example Vendor",
"vendorRelationship": "Example Vendor Relationship",
"vendorPhone": "12345567890",
"vendorMailAddress": "Example Vendor Mail address"
},
"billingManagers": [
{
"id": 1,
"avatar": "avatar",
"displayName": "Example name",
"primaryEmail": "Example email"
}
],
"peopleInCharge": [
{
"id": 1,
"avatar": "avatar",
"displayName": "Example name",
"primaryEmail": "Example email"
}
],
"creator": {
"id": 1,
"email": "foo.bar@example.com",
"name": "foo.bar",
"location": "jp",
"roles": [
{
"id": 1,
"name": "Admin"
}
],
"status": "active"
},
"accountCount": 123,
"identityProviderWorkspaceId": 123,
"customWorkspaceType": "google_sheet"
},
"costs": [
{
"amount": 100,
"currency": "usd"
}
]
}
]
}List all SaaS accounts belonging to a person
List all SaaS accounts belong to a person.
Pagination: Cursor-based
curl --request GET \
--url https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.itmc.i.moneyforward.com/api/v1/organizations/{organizationId}/people/{peopleId}/accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"meta": {
"nextCursor": "F3UdkoSbpBNrjwP93AX2HQ",
"totalItems": 1
},
"items": [
{
"id": "123#jessica.jones@addresss.com",
"identityId": "AHF5GF12",
"username": "jessia-jones",
"displayName": "Jessia Jones",
"email": "jessica.jones@address.com",
"roles": [
"Member",
"Admin"
],
"status": "active",
"employeeStatus": "active",
"employeeType": "collaborator",
"employeeManagementType": "system",
"twoFa": true,
"uniqueKey": "unique_key",
"lastActivity": "Mon Jan 24 2022 13:20:31 GMT+0900 (Japan Standard Time)",
"isInactive": false,
"licenses": [
"Basic",
"Basic Plus",
"Pro",
"Business"
],
"workspace": {
"id": 1,
"organizationId": 1,
"serviceId": 1,
"authenType": "api",
"workspaceName": "iggre",
"aggreKey": "iggre",
"lastExecutionStatus": "processing",
"lastExecutionTime": "2020-11-11 10:00:00",
"lastUsedAt": "2020-11-11 10:00:00",
"lastExecutionResultId": "SUCCESS",
"lastExecutionResultCode": 200,
"lastExecutionResultMessage": "NOT_FOUND",
"provisioningCredentialEnabled": false,
"description": "Description of the workspace",
"showDescription": false,
"isCustomWorkspace": false,
"deviceAggregationStatus": "finished",
"service": {
"id": 1,
"name": "Google",
"uniqueName": "google",
"url": "https://google.com",
"isEmployeeMasterService": true,
"adminUrl": "https://admin.google.com/u/0/ac/home",
"userManagementUrl": "https://admin.google.com/u/0/ac/users",
"serviceTopUrl": "https://workspace.google.com/products/admin/",
"guidanceUrl": "https://notion.link/google",
"serviceAlternateUrls": [
"www.slides.google.com",
"www.docs.google.com",
"www.sheets.google.com"
],
"aggreTypes": [
{
"name": "aggregateAll",
"authenTypes": [
{
"name": "oauth",
"requiredAttributes": [
"username",
"password"
],
"optionalAttributes": [
"secretKey"
],
"permittedAttributes": [
"aggreKey"
],
"separatelyUpdatableAttributes": [
"groups"
],
"permissions": [
"read-write",
"read"
],
"variant": "enterprisePlan"
}
]
}
],
"canDeleteAccount": false,
"canDeactivateAccount": false,
"canAggregateSpend": false,
"canAggregateFiles": false,
"canManageFilePermissions": false,
"canOnlyAggregatePublicFiles": false,
"canAggregateDevices": false,
"canPerformMatching": true,
"canProvisionAccount": false,
"isCustomService": false,
"isIdentityProvider": false,
"serviceMeta": {
"id": 1,
"vendorName": "Example Vendor",
"vendorCountryOfOrigin": "Japan",
"termsOfUseUrl": "https://example.com",
"privacyPolicyUrl": "https://example.com",
"dataSecurityPolicyUrl": "https://example.com",
"certifications": [
{
"name": "Example",
"url": "https://example.com"
}
]
}
},
"workspaceMeta": {
"id": 1,
"workspaceId": 1,
"organizationId": 1,
"note": "Example note",
"businessImpactLevel": "low",
"dataStoreRegion": "ap-northeast-1",
"piiEnabled": false,
"pii": "Example note",
"confidentialInfo": "confidential",
"securityImpactLevel": "low",
"vendorName": "Example Vendor",
"vendorRelationship": "Example Vendor Relationship",
"vendorPhone": "12345567890",
"vendorMailAddress": "Example Vendor Mail address"
},
"billingManagers": [
{
"id": 1,
"avatar": "avatar",
"displayName": "Example name",
"primaryEmail": "Example email"
}
],
"peopleInCharge": [
{
"id": 1,
"avatar": "avatar",
"displayName": "Example name",
"primaryEmail": "Example email"
}
],
"creator": {
"id": 1,
"email": "foo.bar@example.com",
"name": "foo.bar",
"location": "jp",
"roles": [
{
"id": 1,
"name": "Admin"
}
],
"status": "active"
},
"accountCount": 123,
"identityProviderWorkspaceId": 123,
"customWorkspaceType": "google_sheet"
},
"costs": [
{
"amount": 100,
"currency": "usd"
}
]
}
]
}承認
クエリパラメータ
Limit the number of results returned. Maximum 200.
x <= 20050
Cursor to paginate through results.
Filter results by role (not all SaaS support this filter).admin - only SaaS admin accountsguest - only SaaS guest accountsother - SaaS accounts that are neither admin nor guest
admin, guest, other Filter results by two-factor authentication availability.
Filter results by SaaS name or workspace name (partial match supported).
Filter results by service ID. Accepts multiple options.
[1, 2, 3]Filter results by workspace ID. Accepts multiple options.
[1, 2, 3]Sort results by a specific field.
service, twoFa, lastActivity Sort results in ascending or descending order. Defaults to ASC.
DESC, ASC Filter results by license. Accepts multiple options.
["license1", "license2"]Filter results by status.
active, suspended, on_leave このページは役に立ちましたか?

