OS1 Services
...
Participant
Integrate with Participants
How to: Create a Participant Type
2min
for information about prerequisites, see creating participants assuming there are no participants in the system, the first participant that you need to create is a participant tenant the participant tenant can be the owner of any other participant the participant type request takes a singular and plural name for the participant for the tenant participant, which is also the master participant, both the singular and plural names are the same let's create the tenant participant and call it a vehicle to create a tenant participant type, call the create participant type endpoint and pass a request body similar to the following after the participant of type tenant is created, you can create the other participant types that are going to be part of the operations the next participant type to create is a type that you can use to represent all the mobile devices that the organization owns to create the mobile device participant type, call the create participant type endpoint and pass a request body similar to the following create participant type request body { "name" { "singular" "car", "plural" "cars" }, "alias" { "singular" "automobile", "plural" "automobiles" }, "category" \[ { "name" "sedan", "description" "a passenger vehicle with four doors", "subcategory" \[ "compact", "mid size", "full size" ] } ], "allowedowner" { "oneof" \[ "vendors", "users" ], "not" \[ "vehicle" ] }, "entitycode" "car001", "callback" { "url" "https //example com/callback", "meta" { "apikey" "abcdef123456", "notificationpreference" "email" } }, "enableorchestrator" true } 📘 note note by default, all of the tenants that have been initialized already have a tenant participant type created so the above step can be skipped unless you are working with a tenant and initializing it from scratch