postman.processmaker.io Open in urlscan Pro
35.171.248.79  Public Scan

URL: https://postman.processmaker.io/
Submission: On July 20 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

 * Body
 * Headers (0)

 * Body
 * Headers (0)

 * Body
 * Headers (0)

 * Body
 * Headers (0)

 * Body
 * Headers (0)




Public


Documentation Settings

ENVIRONMENT
No Environment

LAYOUT
Double Column

LANGUAGE
cURL - cURL



STM Developer Environment
Introduction
POST
PM4: Get Token Password Mode
POST
PM4: Get Token Client Mode
POST
PM4: Create Request
POST
PM4: Create Request with Package
POST
PM4: Create OAuth2 Token
GET
PM4: Get Workspace Stats
POST
PM: Create cases
GET
PM: Get Case Variables
GET
PM: Get Health
GET
PM: Get Process Export
GET
PM: Get Search Cases
POST
PM: Get Tenant Token Credentials Mode
POST
PM: Get Tenant Token Password Mode
GET
PM: Get Workspace Stats
PUT
PM: PUT License Update
POST
STM: Get Token Password Mode
POST
STM: Get Token Client Mode
GET
STM: Addons List
GET
STM: Custom Plugins List
POST
STM: Custom Plugin Deploy
GET
STM: Domains List
GET
STM: Languages List
GET
STM: Licenses Due Date List
POST
STM: License Create
POST
STM: License Registration
POST
STM: PLG Instance Create v3
GET
STM: Skins List
GET
STM: Template Settings List
GET
STM: Usage Statistics
GET
STM: Workspaces List
GET
STM: Workspace Detail
POST
STM: Workspace Create
POST
STM: Workspace Create PM4
POST
STM: Workspace Confirm PM3
POST
STM: Workspace Confirm PM4
DEL
STM: Workspace Delete
POST
STM: Workspace Regenerate JSON
GET
STM: Workspace Statistic
GET
STM: Workspaces Statistics
GET
STM: Workspaces Statistics PGS
GET
STM: Workspaces Statistics PGO
GET
STM: Workspaces Statistics CGS
GET
STM: Workspaces Statistics CGO
POST
DLE: Create Workspace
DEL
DLE: Delete Case
GET
DLE: Get Projects with STM Token
GET
DLE: Get Schemas WS Tenant Token
GET
DLE: Get Schemas WS Tenant Token v3
POST
DLE: Send Payload
POST
DLE: Send Payload PM4
PUT
DLE: Update Workspace Data
GET
DLE: Get Queue Job


STM DEVELOPER ENVIRONMENT





POSTPM4: GET TOKEN PASSWORD MODE

http://{{pm4-server}}/oauth/token
HEADERS
Content-Type

application/json

Bodyraw

{
    "grant_type": "password",
    "client_id": "{{pm4-client-id}}",
    "client_secret": "{{pm4-client-secret}}",
    "username": "{{pm4-user}}",
    "password": "{{pm4-password}}",
    "scope": "*"
}

Example Request
PM4: Get Token Password Mode

curl


curl --location -g 'http://{{pm4-server}}/oauth/token' \
--header 'Content-Type: application/json' \
--data '{
    "grant_type": "password",
    "client_id": "{{pm4-client-id}}",
    "client_secret": "{{pm4-client-secret}}",
    "username": "{{pm4-user}}",
    "password": "{{pm4-password}}",
    "scope": "*"
}'

Example Response
 * Body
 * Headers (0)

No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers


POSTPM4: GET TOKEN CLIENT MODE

http://{{subdomain}}{{subdomain-separator}}{{pm4-server}}/oauth/token
HEADERS
Content-Type

application/json

Accept

application/json

Bodyraw

{
    "grant_type": "client_credentials",
    "client_id": "{{pm4-client-id}}",
    "client_secret": "{{pm4-client-secret}}",
    "scope": "*"
}

Example Request
PM4: Get Token Client Mode

View More
curl


curl --location -g 'http://{{subdomain}}{{subdomain-separator}}{{pm4-server}}/oauth/token' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
    "grant_type": "client_credentials",
    "client_id": "{{pm4-client-id}}",
    "client_secret": "{{pm4-client-secret}}",
    "scope": "*"
}'

Example Response
 * Body
 * Headers (0)

No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers


POSTPM4: CREATE REQUEST


{{pm4-server}}/api/1.0/process_events/2?event=node_1
AUTHORIZATIONBearer Token
Token

{{pm4-access-token}}

HEADERS
Accept

application/json

Content-Type

application/json

PARAMS
event

node_1

Bodyraw

{
    "username": "Gustavo",
    "cost":100
}

Example Request
PM4: Create Request

curl


curl --location -g '{{pm4-server}}/api/1.0/process_events/2?event=node_1' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
    "username": "Gustavo",
    "cost":100
}'

Example Response
 * Body
 * Headers (0)

No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers



POSTPM4: CREATE OAUTH2 TOKEN


http://{{pm4-server}}/api/1.0/ethos/generateoauthtoken/create
AUTHORIZATIONBearer Token
Token

{{pm4-access-token}}

HEADERS
Accept

application/json

Content-Type

application/json

Bodyraw

{
    "user_identity": "gustavo.silva@processmaker.com",
    "scope":"*"
}

Example Request
PM4: Create OAuth2 Token

curl


curl --location -g 'http://{{pm4-server}}/api/1.0/ethos/generateoauthtoken/create' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "user_identity": "gustavo.silva@processmaker.com",
    "scope":"*"
}'

Example Response
 * Body
 * Headers (0)

No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers


GETPM4: GET WORKSPACE STATS


https://{{subdomain}}{{subdomain-separator}}{{pm4-server}}/api/stm/workspace/stats
AUTHORIZATIONBearer Token
Token

{{pm4-access-token}}

HEADERS
Accept

application/json

Example Request
PM4: Get Workspace Stats

View More
curl


curl --location -g 'https://{{subdomain}}{{subdomain-separator}}{{pm4-server}}/api/stm/workspace/stats' \
--header 'Accept: application/json' \
--data ''

Example Response
 * Body
 * Headers (0)

No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers