List Entrances
POST /acs/entrances/list ⇒ { acs_entrances: [acs_entrance, …] }Returns a list of all ACS entrances.
Request
await seam.acs.entrances.list();Response
[
{
"acs_system_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_entrance_id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "2024-04-05T07:57:05.323Z",
"display_name": "text"
}
]Request
seam.acs.entrances.list()Response
[
AcsEntrance(
acs_system_id="123e4567-e89b-12d3-a456-426614174000",
acs_entrance_id="123e4567-e89b-12d3-a456-426614174000",
created_at="2024-04-05T07:57:05.323Z",
display_name="text",
)
]Request
seam.acs.entrances.list()Response
[
{
"acs_system_id" => "123e4567-e89b-12d3-a456-426614174000",
"acs_entrance_id" => "123e4567-e89b-12d3-a456-426614174000",
"created_at" => "2024-04-05T07:57:05.323Z",
"display_name" => "text",
},
]Request
<?php
$seam->acs->entrances->list();Response
<?php
[
[
"acs_system_id" => "123e4567-e89b-12d3-a456-426614174000",
"acs_entrance_id" => "123e4567-e89b-12d3-a456-426614174000",
"created_at" => "2024-04-05T07:57:05.323Z",
"display_name" => "text",
],
];Request
seam acs entrances listResponse
[
{
"acs_system_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_entrance_id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "2024-04-05T07:57:05.323Z",
"display_name": "text"
}
]Request
package main
func main() {
client.Acs.Entrances.List(context.Background())
}Response
[]api.AcsEntrance{api.AcsEntrance{AcsSystemId: "123e4567-e89b-12d3-a456-426614174000", AcsEntranceId: "123e4567-e89b-12d3-a456-426614174000", CreatedAt: "2024-04-05T07:57:05.323Z", DisplayName: "text"}}Authentication Methods
API key
Client session token
Personal access token Must also include the
seam-workspaceheader in the request.
Request Parameters
acs_credential_id
acs_credential_idType: string Required: No
acs_system_id
acs_system_idType: string Required: No
Return Type
Array<acs_entrance>
Last updated
Was this helpful?

