Purpose

A post API to get a list of users from Sectona PAM.

Accessing the API

Endpoint: /API/APP/APP007/GetUsers
XML


HTTP METHOD

POST
XML


Parameters

ParametersData TypeRequiredDescription

Filter

String

YES

All/Active/Disabled

Instance

String

YES

It must be a valid Instance name


Sample Request (JSON)

{
	"Filter":"String",
	"Instance":"String",
}

XML

Sample Response (JSON)

{
	"Version":"2.3.0.0",
	"IsSuccess":true,
	"LogCode":"0",
	"Result":"[
			{
				"AuthenticationType": "SectonaAuthentication",
				"Username": "Username",
				"FirstName": "FirstName",
				"LastName": "LastName",
				"CreatedBy": "CreatedBy",
				"CreatedOn": "16 Mar 2018 12:48:07 GMT 05:30:00",
				"Status": "Active"
			},
			{
				"AuthenticationType": "UnixDirectoryStore",
				"Username": "Username",
				"FirstName": "FirstName",
				"LastName": "LastName",
				"CreatedBy": "CreatedBy",
				"CreatedOn": "12 Aug 2017 11:25:30 GMT 05:30:00",
				"Status": "Disabled"
			}
	]",
	"StatusCode":"Accepted",
	"Timestamp":"03 Jun 2019 10:47:50 GMT 05:30:00"
}

XML