Form

Update step action form

POST https://biometrid.com/api/processes/:id/step

This endpoint allows you to update a process step form type.

Path Parameters

Name
Type
Description

id

string

ID of the process to get

Headers

Name
Type
Description

Accept-Language

string

en (default), pt

Content-Type

string

application/json or multipart/form-data

Authorization

string

Authentication account token

{
  "data": {SHOW_CURRENT_STEP},
  "meta": {
    "message": "ProcessStep updated with success."
  },
  "status": true
}
// JSON Example

{
	"name": "Test",
  "number": 8,
  "interest": ["interest1"],
  "one": "pick1",
  "type": "typea",
  "cases": ["case1", "case2"],
  "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAMSURBVBhXY5Bk+A8AAU4BGazGfuMAAAAASUVORK5CYII=",
  "birthday": "2000-01-01",
  "country": "PT",
  "peoples": 1,
	"phone": {
		"country": "PT",
		"number": "911111111"
	},
	"zipcode": {
		"country": "PT",
		"number": "4430-369"
	}
}

Last updated

Was this helpful?