Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


1- Need to know the API version (  http://172.30.54.71:8774/v2/  )

...

3- get the Token from Keystone ( port 5000 )


OpenStack REST API using Postman

https://www.youtube.com/watch?v=P3SqdJnA224


https://docs.openstack.org/juno/config-reference/content/list-of-compute-config-options.html

...

3- get the Token from Keystone ( port 5000 )


Method:

POST: http://172.30.54.71:5000/v2.0/tokens

In the Body:

{
"auth":{
"tenantName":"admin",
"passwordCredentials":{
"username":"admin",
"password":"contrail123"
}
}
}

...