API v3.0
GET
GET Entity List
URL
https://mobstep.com/api/v3.0/item?application_id={{application_id}}&fields=id Fields
| Name | Description |
|---|---|
id | - |
Headers
| Name | Value | Description |
|---|---|---|
Authorization | Bearer {{oauth_access_token}} | - |
mobstep-customer-token | {{customer_token}} | - |
Description
API v3 list endpoint. For public entities you must send application_id as query. For private access, use Bearer (OAuth) or mobstep-customer-token.
POST
POST Entity Create
URL
https://mobstep.com/api/v3.0/item Headers
| Name | Value | Description |
|---|---|---|
Content-Type | application/json | - |
Authorization | Bearer {{oauth_access_token}} | - |
mobstep-customer-token | {{customer_token}} | - |
Body
{} Description
API v3 create endpoint (requires auth depending on entity).
POST
POST Entity Update (with id in body)
URL
https://mobstep.com/api/v3.0/item Headers
| Name | Value | Description |
|---|---|---|
Content-Type | application/json | - |
Authorization | Bearer {{oauth_access_token}} | - |
mobstep-customer-token | {{customer_token}} | - |
Body
{
"id": "{{api_entity_id}}"
} Description
API v3 update endpoint: send id in body for edit.
DELETE
DELETE Entity
URL
https://mobstep.com/api/v3.0/item/{{api_entity_id}} Headers
| Name | Value | Description |
|---|---|---|
Authorization | Bearer {{oauth_access_token}} | - |
mobstep-customer-token | {{customer_token}} | - |
Description
API v3 delete endpoint.