-
Notifications
You must be signed in to change notification settings - Fork 6
Create a resource (v1)
Ryan Newington edited this page Jan 11, 2017
·
2 revisions
Used to create a resource in the FIM Service
New implementations should use the v2 API call
Method | URL |
---|---|
POST | /v1/resources/ |
This request type requires a JSON-formatted list of attribute/value pairs to save with the resource. An ObjectType attribute is required in the body.
See the topic on error handling for the response codes that this API call can return.
If successful, this method will return the object ID of the newly created resource
POST /v1/resources/
{
"ObjectType":"Person",
"AccountName":"testuser"
"DisplayName":"Test User"
}
HTTP/1.1 200 OK
cc9d3f44-3232-4f6c-a412-d8a191574175