GSC POD API

Authentication

Get Registered Employees

Status: Complete

Endpoint: https://pod.dev.gscserver.com/api/auth/employees

Method: GET

Content-Type: application/json

Payload: N/A


Try It Out



Result:

...
				

Signup

Status: Complete

Endpoint: https://pod.dev.gscserver.com/api/auth/signup

Method: POST

Content-Type: application/json

Payload:

{
	"employee_id": 17376,
	"password": "P@ssw0rD"
}
				

Try It Out




Result:

...
				

Signin

Status: Complete

Endpoint: https://pod.dev.gscserver.com/api/auth/signin

Method: POST

Content-Type: application/json

Payload:

{
	"employee_id": 17376,
	"password": "P@ssw0rD"
}
				

Try It Out





Result:

...
				

Signout

Status: Complete

Endpoint: https://pod.dev.gscserver.com/api/auth/signout

Method: POST

Content-Type: application/json

Payload:

{
	"employee_id": 17376
}
				

Try It Out




Result:

...
				

Change Password

Status: Complete

Endpoint: https://pod.dev.gscserver.com/api/auth/password/update

Method: POST

Content-Type: application/json

Payload:

{
	"employee_id": 17376,
	"password": "0ld_P4ssword",
	"new_password": "N3w_P@ssW0rd"
}
				

Reset Password

Status: Under Development

Endpoint: https://pod.dev.gscserver.com/api/auth/password/reset

Method: POST

Content-Type: application/json

Payload:

{
	"employee_id": 17376
}